﻿/* ═══════════════════════════════════════════════════════════
   TIMELABS DESIGN TOKENS  —  extracted from /hr-software-india 
   ═══════════════════════════════════════════════════════════ */
:root {
  /* Brand palette */
  --tl-navy:       #001659;   /* hero bg, nav bg                */
  --tl-navy-dark:  #071428;   /* deeper hero section             */
  --tl-navy-mid:   #001659;   /* section separators, cards       */
  --tl-teal:       #ff9e2c;   /* primary CTA green               */
  --tl-teal-dark:  #006FFA;   /* CTA hover                       */
  --tl-teal-light: #fff6eb;   /* teal tint backgrounds           */
  --tl-orange:     #ff6b35;   /* accent / highlight numbers      */
  --tl-yellow:     #ffc107;   /* stars, badges                   */
  --tl-white:      #ffffff;
  --tl-off-white:  #f8f9fb;   /* section backgrounds             */
  --tl-light-gray: #eef1f6;   /* borders, subtle bg              */
  --tl-mid-gray:   #9ba8bc;   /* muted text                      */
  --tl-body-text:  #2d3a4a;   /* body copy                       */
  --tl-heading:    #0f4f93;   /* dark headings on white          */

  /* Typography — Nunito Sans (matches timelabs pages) */
  --font-body: "Poppins", sans-serif !important;
  --font-head: "Poppins", sans-serif !important;

  /* Spacing */
  --r: 8px; --r2: 14px; --r3: 22px; --r4: 32px;

  /* Shadows */
  --sh-sm: 0 2px 8px rgba(11,31,58,.08);
  --sh:    0 6px 24px rgba(11,31,58,.12);
  --sh-lg: 0 16px 48px rgba(11,31,58,.16);
}

/* ─── RESET + BASE ─────────────────────────────────────── */
*, *::before, *::after { box-sizing:border-box; margin:0; padding:0 }
.priceHead i::before {content: "\e930";}
.parent.active .priceHead i::before {content: "\e92e";}
html { scroll-behavior:smooth }
body {
  font-family: var(--font-body);
  color: var(--tl-body-text);
  background: var(--tl-white);
  line-height: 1.65;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4 { font-family: var(--font-head); line-height: 1.2; color: var(--tl-heading) }
a { text-decoration: none; color: inherit }
img { max-width:100%; display:block; margin-left: 8px; }
ul { list-style:none }

/* ─── LAYOUT ────────────────────────────────────────────── */
.container { max-width: 1440px; margin: 0 auto; padding: 0 24px }
.section-pad { padding: 72px 0 }
.section-pad-sm { padding: 48px 0 }

/* ─── TYPOGRAPHY HELPERS ────────────────────────────────── */
.eyebrow {display: inline-flex; align-items: center; gap: 7px;font-size: 14px; font-weight: 700; letter-spacing: .09em;text-transform: uppercase; color: var(--tl-teal);margin-bottom: 14px;}
.eyebrow::before {content:''; width:18px; height:2px;background: var(--tl-teal); border-radius:2px;}
.section-title {font-size: clamp(1.65rem, 3.2vw, 3.7rem) !important;font-weight: 600; color: var(--tl-heading) !important;margin-bottom: 14px;margin-top:0px;line-height:normal;}
.section-title span { color: var(--tl-teal) }
.section-sub {font-size: 18px; color: #5a6a80;max-width: 560px; line-height:1.7;}
.center-text { text-align: center }
.center-text .section-sub { margin: 0 auto }
/* ─── BUTTONS ───────────────────────────────────────────── */
.btn {display: inline-flex; align-items: center; justify-content: center;gap: 8px; font-family: var(--font-body);font-weight: 600; font-size: 14px; border-radius: var(--r2);cursor: pointer; transition: all .18s; border: none;white-space: nowrap; line-height:1; padding: 13px 26px;}
.btn-primary {background: var(--tl-teal); color: var(--tl-white);box-shadow: 0 4px 16px rgba(0,197,163,.3);}
.btn-primary:hover { background: var(--tl-teal-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,197,163,.4) }
.btn-primary-lg { padding: 15px 32px; font-size: 15px; border-radius: var(--r3) }
.btn-outline {background: transparent; color: var(--tl-teal);border: 2px solid var(--tl-teal);}
.btn-outline:hover { background: var(--tl-teal-light) }
.btn-ghost-white {background: rgba(255,255,255,.1); color: var(--tl-white);border: 1.5px solid rgba(255,255,255,.25);}
.btn-ghost-white:hover { background: rgba(255,255,255,.8) }
.btn-navy {background: var(--tl-navy); color: var(--tl-white);border: 1.5px solid rgba(255,255,255,.1);}
.btn-navy:hover { background: var(--tl-navy-mid) }
.btn-gold {background: #e6960a; color: var(--tl-white);box-shadow: 0 4px 16px rgba(230,150,10,.3);}
.btn-gold:hover { background: #d08a07; transform:translateY(-1px) }
/* ─── HEADER / NAV  (matches timelabs header exactly) ───── */
header {background: #0c112f;position: sticky; top: 0; z-index: 200;border-bottom: 1px solid rgba(255,255,255,.07);}
.header-inner {display: flex; align-items: center;justify-content: space-between;height: 68px; gap: 20px;}
.logo-wrap {display: flex; align-items: center; gap: 0;flex-shrink: 0;}
.logo-wrap img {height: 38px; width: auto;
  /* use real Timelabs SVG logo */
  filter: brightness(0) invert(1); /* white version on dark bg */
}
/* Fallback text logo if SVG doesn't render */
.logo-text {font-family: var(--font-head);font-size: 22px; font-weight: 700;color: var(--tl-white);letter-spacing: -0.5px;}
.logo-text span { color: var(--tl-teal) }
.nav-right {display: flex; align-items: center; gap: 28px;}
.nav-links {display: flex; align-items: center; gap: 24px;}
.nav-links a {font-size: 13px; font-weight: 600;color: rgba(255,255,255,.65);transition: color .15s;}
.nav-links a:hover, .nav-links a.active { color: var(--tl-white) }
.nav-support {display: flex; align-items: center; gap: 7px;font-size: 13px; font-weight: 700; color: var(--tl-white);text-decoration: none;}
.nav-support-icon { width: 18px; height: 18px; opacity:.85 }
.nav-demo-btn { padding: 10px 22px; font-size: 13px }
/* ─── HERO ──────────────────────────────────────────────── */
.hero {background-image: url(../images/connectbg.jpg);background-size: cover;background-position: center center;padding: 120px 0 56px;position: relative;overflow: hidden;}
/* Timelabs-style background circles */
.hero-bg-circle {position: absolute; border-radius: 50%;background: rgba(0,197,163,.07);pointer-events: none;}
.hero-bg-circle-1 { width:500px; height:500px; top:-180px; right:-100px }
.hero-bg-circle-2 { width:320px; height:320px; bottom:-120px; left:5%; background:rgba(0,197,163,.05) }
.hero-content { position:relative; z-index:1 }
.hero-layout {display: grid;grid-template-columns: 1fr 380px;gap: 56px; align-items: center;}
.hero-badge {display: inline-flex; align-items: center; gap: 8px;background: rgba(0,197,163,.12);border: 1px solid rgba(0,197,163,.25);color: var(--tl-teal); font-size: 12px; font-weight: 700;letter-spacing: .06em; text-transform: uppercase;padding: 6px 14px; border-radius: 99px; margin-bottom: 0px;}
.hero-badge-dot { width:7px; height:7px; border-radius:50%; background:var(--tl-teal); animation: pulse 2s infinite }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.3)} }
.hero h1 {font-size: clamp(1.9rem, 4vw, 4.2rem);font-weight: 700; color: var(--tl-white);line-height: 58px; margin-bottom: 18px;}
.hero h1 em { color: var(--tl-teal); font-style: normal }
.hero-sub {font-size: 24px; color: rgba(255,255,255); line-height: 1.7; margin-bottom: 28px; max-width:87%;font-weight:500;}
.hero-checks {display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px;}
.hero-check {display: flex; align-items: center; gap: 10px;font-size: 14px; font-weight: 500; color: rgba(255,255,255,.85);}
.check-icon {width: 20px; height: 20px; border-radius: 50%;background: var(--tl-teal); display: flex;align-items: center; justify-content: center;flex-shrink: 0; font-size: 11px; color:#fff; font-weight:700;}
.hero-ctas {display: flex; gap: 12px; align-items: center; flex-wrap: wrap;margin-bottom: 36px;}
.hero-stats {display: flex; gap: 32px; flex-wrap: wrap;padding-top: 28px;width: 100%;border-top: 1px solid rgba(255,255,255,.1);}
.hero-stat-val {font-family: var(--font-head);font-size: 2.4rem; font-weight: 700; color: var(--tl-white);display: block; line-height: 1;}
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,.66); margin-top: 4px; display: block;}

/* ─── PRICING CARD (the form box on hero) ───────────────── */
.hero-price-card {background: var(--tl-white);border-radius: var(--r4);padding: 32px 28px;box-shadow: var(--sh-lg);position: relative;}
.hero-price-card::before {content: 'Plans from ₹65/employee';position: absolute; top: -13px; left: 50%;transform: translateX(-50%);background: var(--tl-teal);color: #fff; font-size: 11px; font-weight: 700;letter-spacing: .07em; text-transform: uppercase;padding: 4px 16px; border-radius: 99px; white-space:nowrap;}
.hero-price-card h3 {font-size: 18px; font-weight: 600; color: var(--tl-heading);margin-bottom: 5px; text-align: center; margin-top:4px;}
.hero-price-card .sub { font-size:12px; color:#6b7a90; text-align:center; margin-bottom:13px }
.billing-toggle {display: flex; background: var(--tl-light-gray);border-radius: 99px; padding: 4px;margin-bottom: 7px;}
.billing-opt {flex: 1; text-align: center; padding: 8px 12px;font-size: 12px; font-weight: 700; border-radius: 99px;cursor: pointer; transition: all .2s;color: var(--tl-mid-gray); user-select:none;white-space:nowrap;}
.billing-opt.active {background: var(--tl-white); color: var(--tl-heading);box-shadow: 0 2px 8px rgba(0,0,0,.1);}
.save-pill {font-size: 12px; background: var(--tl-teal); color:#fff;padding:2px 6px; border-radius:99px; font-weight:700;letter-spacing:.04em; vertical-align:middle; margin-left:4px;}
.mini-plans { display:flex; flex-direction:column; gap:8px; margin-bottom:20px }
.mini-plan { border: 1.5px solid var(--tl-light-gray); border-radius: var(--r2); padding: 12px 14px; cursor: pointer; transition: all .18s; display: flex; align-items: center; justify-content: space-between; gap:10px;}
.mini-plan:hover { border-color: var(--tl-teal); background: var(--tl-teal-light) }
.mini-plan.selected { border-color: var(--tl-teal); background: var(--tl-teal-light) }
.mini-plan-left { display:flex; flex-direction:column; gap:2px }
.mini-plan-name { font-size:13px; font-weight:600; color:var(--tl-heading) }
.mini-plan-desc { font-size:11px; color:#6b7a90 }
.mini-plan-price { text-align:right }
.mini-plan-amt { font-size:15px; font-weight:700; color:var(--tl-teal); font-family:var(--font-head) }
.mini-plan-per { font-size:10px; color:#9ba8bc; display:block; margin-top:1px }
.mini-plan.featured-plan { border-color:var(--tl-teal) !important; background:rgb(255 246 235) }
.popular-tag {font-size:9px; font-weight:700; text-transform:uppercase;letter-spacing:.07em; background:var(--tl-teal); color:#fff;padding:2px 7px; border-radius:99px;}
.hero-price-ctas { display:flex; flex-direction:column; gap:8px }
.hero-price-ctas .btn { width:100%; justify-content:center }
.trust-micro {display:flex; align-items:center; justify-content:center;gap:12px; margin-top:14px; font-size:11px; color:#9ba8bc; flex-wrap:wrap;}
.trust-micro span { display:flex; align-items:center; gap:4px }
/* ─── LOGO BAR ──────────────────────────────────────────── */
.logo-bar { background: var(--tl-off-white);  border-bottom:1px solid var(--tl-light-gray) }
.logo-bar-inner { display:flex; align-items:center; justify-content:center; gap:0; flex-wrap:wrap;}
.brand-section{position:relative; background: var(--tl-off-white);}
.logo-pill { font-size:13px; font-weight:700; color:#6b7a90; padding:0 20px; border-right:1px solid var(--tl-light-gray); white-space:nowrap;}
.logo-pill:last-child { border-right:none }
/* ─── COMPETITOR BANNER ─────────────────────────────────── */
.comp-bar { background: var(--tl-navy-mid); padding:18px 0 }
.comp-bar-inner {display:flex; align-items:center; justify-content:center;gap:0; flex-wrap:wrap;row-gap:15px;padding:0px;}
.comp-bar-main {display: flex;flex-wrap: wrap;row-gap: 10px; justify-content: center;}
.comp-stat {display:flex; flex-direction:column; align-items:center;padding:0 28px; border-right:1px solid rgba(255,255,255,.1);}
.comp-stat:last-child { border-right:none }
.comp-pct {font-family:var(--font-head); font-size:1.8rem; font-weight:700;color:var(--tl-teal); line-height:1;}
.comp-label { font-size:12px; color:rgba(255,255,255,.66); margin-top:3px; text-align:center }
.comp-bar-intro {font-size:16px; font-weight:700; color:rgba(255,255,255,.75);letter-spacing:.07em; text-transform:uppercase;padding-right:28px; border-right:1px solid rgba(255,255,255,.1);margin-right:0;}
/* ─── PLAN CARDS ────────────────────────────────────────── */
.plans-section { background: var(--tl-off-white) }
.plans-grid {display:grid !important;grid-template-columns: repeat(auto-fit, minmax(248px, 1fr));gap:18px; margin-top:40px;}
.plan-card {background: var(--tl-white);border:2px solid var(--tl-light-gray);border-radius:var(--r3); padding:28px 22px;position:relative; transition:all .22s;}
.plan-card:hover { transform:translateY(-4px); box-shadow:var(--sh-lg) }
.plan-card.popular {border-color:var(--tl-teal);box-shadow: 0 0 0 4px rgba(0,197,163,.1), var(--sh);}
.plan-card.popular::before {content:'Most Popular';position:absolute; top:-14px; left:50%;transform:translateX(-50%);background:var(--tl-teal); color:#fff;font-size:10px; font-weight:600; letter-spacing:.09em;text-transform:uppercase; padding:4px 16px; border-radius:99px;white-space:nowrap;}
.plan-card.hardware-card {border-color:#e6960a; background:linear-gradient(160deg,#fffdf5 0%,#fff 100%);}
.plan-card.hardware-card::before {content:'Only in India';position:absolute; top:-14px; left:50%;transform:translateX(-50%);background:#e6960a; color:#fff;font-size:10px; font-weight:600; letter-spacing:.09em;text-transform:uppercase; padding:4px 16px; border-radius:99px;white-space:nowrap;}
.plan-tier {font-size:16px; font-weight:600; letter-spacing:.1em;text-transform:uppercase; margin-bottom:8px;}
.plan-name {font-family:var(--font-head); font-size:1.45rem;font-weight:600; margin-bottom:6px;}
.plan-tagline {font-size:12px; color:#6b7a90; margin-bottom:20px;line-height:1.55; min-height:38px;}
.plan-price-block {margin-bottom:20px; padding-bottom:18px;border-bottom:1px solid var(--tl-light-gray);}
.plan-price-row { display:flex; align-items:baseline; gap:3px }
.plan-amt {font-family:var(--font-head); font-size:2rem; font-weight:600;color:var(--tl-heading); transition:all .25s;}
.plan-per-mo { font-size:13px; color:#9ba8bc }
.plan-per-emp {font-size:14px; color:#6b7a90; margin-top:5px;}
.plan-per-emp strong { color:var(--tl-teal); font-weight:600 }
.plan-annual-save {
  font-size:14px; font-weight:700; color:var(--tl-teal);
  margin-top:4px; display:none;
}
.plan-extra { font-size:13px; color:#9ba8bc; margin-top:3px }
.plan-cta {
  display:block; text-align:center;
  padding:12px 20px; border-radius:var(--r2);
  font-weight:600; font-size:13px; cursor:pointer;
  transition:all .18s; margin-bottom:8px; border:none;
  font-family:var(--font-body);
}
.cta-teal  { background:var(--tl-teal); color:#fff; box-shadow:0 3px 12px rgba(0,197,163,.25) }
.cta-teal:hover { background:var(--tl-teal-dark); transform:translateY(-1px);color:#fff; }
.cta-outline-teal { background:transparent; color:var(--tl-teal); border:2px solid var(--tl-teal) }
.cta-outline-teal:hover { background:var(--tl-teal-light) }
.cta-navy { background:var(--tl-navy); color:#fff }
.cta-navy:hover { background:var(--tl-navy-mid);color:#fff; }
.cta-gold { background:#e6960a; color:#fff; box-shadow:0 3px 12px rgba(230,150,10,.25) }
.cta-gold:hover { background:#d08a07; transform:translateY(-1px); color:#fff;}
.plan-cta-note {
  font-size:11px; color:#9ba8bc; text-align:center;
  margin-bottom:18px;
}
.plan-features { display:flex; flex-direction:column; gap:0 }
.plan-feature {
  font-size:12px; color:var(--tl-body-text);
  padding:7px 0; border-bottom:1px solid var(--tl-light-gray);
  display:flex; align-items:flex-start; gap:8px; line-height:1.45;
}
.plan-feature:last-child { border-bottom:none }
.plan-feature.dim { color:#9ba8bc }
.feat-ic {
  width:16px; height:16px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:9px; font-weight:600; flex-shrink:0; margin-top:1px;
}
.fi-yes { background:#d6f5ef; color:#00896a }
.fi-no  { background:var(--tl-light-gray); color:#bcc5d0 }
.fi-cap { background:#fff3cd; color:#8a6000 }
.feat-badge {
  font-size:10px; font-weight:700; padding:1px 5px;
  border-radius:3px; background:#fff3cd; color:#8a6000;
  margin-left:auto; flex-shrink:0;
}

/* ─── MICRO PLAN STRIP ──────────────────────────────────── */
.micro-strip {
    background-image: url('../images/teambg.svg');
    border-radius: var(--r3);
    padding: 30px 28px;
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.micro-strip-text h4 {
  font-size:22px; font-weight:600; color:var(--tl-white); margin-bottom:4px;
}
.micro-strip-text p {
  font-size:16px; color:rgba(255,255,255); line-height:1.5;
}
.micro-strip-price {
  font-family:var(--font-head); font-size:2.5rem;
  font-weight:600; color:var(--tl-teal);
}
.micro-strip-price sup { font-size:.8rem; vertical-align:super }
.micro-strip-price sub { font-size:1.2rem; color:rgba(255,255,255); font-weight:600 }

/* ─── FEATURE TABLE ─────────────────────────────────────── */
.table-section { background:var(--tl-white) }
.feat-table-wrap { overflow-x:auto; border-radius:var(--r2); border:1px solid var(--tl-light-gray); margin-top:40px; box-shadow:var(--sh-sm) }
.feat-table { width:100%; border-collapse:collapse; min-width:680px }
.feat-table thead th {
  padding:14px 16px; font-size:11px; font-weight:600;
  letter-spacing:.08em; text-transform:uppercase;
  color:#6b7a90; background:var(--tl-off-white);
  border-bottom:2px solid var(--tl-light-gray); text-align:left;
}
.feat-table thead th.plan-col { text-align:center; min-width:130px }
.feat-table thead th.pop-col {
  background:var(--tl-teal-light);
  color:#00896a; border-bottom:2px solid var(--tl-teal);
}
.feat-table tbody tr.cat-row td {
  background:var(--tl-off-white);
  font-size:11px; font-weight:600; letter-spacing:.07em;
  text-transform:uppercase; color:var(--tl-navy);
  padding:10px 16px;
  border-top:2px solid var(--tl-light-gray);
}
.feat-table tbody td {
  padding:10px 16px; border-bottom:1px solid var(--tl-light-gray);
  font-size:12px; color:var(--tl-body-text); vertical-align:middle;
}
.feat-table tbody td.plan-col { text-align:center }
.feat-table tbody td.pop-col { background:rgba(0,197,163,.04); text-align:center }
.feat-table tbody tr:hover td { background:var(--tl-off-white) }
.feat-table tbody tr:hover td.pop-col { background:rgba(0,197,163,.07) }
.feat-table tfoot td {
  padding:14px 16px; background:var(--tl-off-white);
  border-top:2px solid var(--tl-light-gray);
}
.feat-table tfoot td.pop-col { background:var(--tl-teal-light) }
.tck  { color:#00c5a3; font-size:16px; font-weight:900 }
.tx   { color:#cdd5df; font-size:16px }
.tcap { display:inline-block; font-size:10px; font-weight:700; padding:2px 6px; border-radius:3px; background:#fff3cd; color:#8a6000 }

/* ─── ROI CALCULATOR ────────────────────────────────────── */
.calc-section { background:var(--tl-off-white) }
.calc-grid {
  display:grid; grid-template-columns:1fr 1fr;
  gap:48px; align-items:flex-start; margin-top:0px;
}
.talkexpert:hover {color: #fff;}


/* ------ HR SAMVAAD CSS ------------*/
.joinevent {
    padding-top: 0px;
}

.Event-section {
    padding: 30px 0
}
.About-section {
    background: #F2F8FF;
}

.hr-samvaad-aboutus {
    background: #F2F8FF
}
.hrsamvaad {
  
    background-image: url(../images/herobg.jpg) ;
    background-position: center center;
    padding: 150px 0 150px;
    position: relative;
    overflow: hidden;
}
.community-section {
    text-align: center;
}
.about-us-title {
    font-size: clamp(18px, 4vw, 32px);
    line-height: 1.2;
    text-align: center;
}

.speaker-image-col {
    text-align: right;
}

.speaker-image {
    display: inline-block;
    max-height: 360px; 

    position: relative;
    bottom: -19px;
}



@media (max-width: 767px) {

    .speaker-image-col {
        display: none;
    }

    .speaker-image {
        display: none;
    }
}


@media (max-width: 767px) {

    .hrliveinnerdata {
        display: flex;
        flex-direction: column;
    }

        .hrliveinnerdata .col-sm-5 {
            text-align: center !important;
            margin-top: 15px;
            order: 2;
        }

            .hrliveinnerdata .col-sm-5 img {
                margin-top: 0 !important;
                max-height: 160px; 
                width: auto;
                display: inline-block;
            }

        .hrliveinnerdata .col-sm-7 {
            order: 1;
            text-align: center;
        }

    
    .hr-samvaad-about-heading {
        font-size: 18px;
        line-height: 30px;
    }
   
}


@media (max-width: 768px) {
    .about-us-text {
        text-align: center;
        line-height: 1.5;
        font-size: 8px;
        word-break: break-word;
    }

        .about-us-text br {
            display: none;
        }
}

.community-heading-join {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.community-text {
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 25px;
    padding: 0 10px;
}

.join-btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    text-align: center;
    border-radius: 15px;
}

/* Tablet */
@media (max-width: 992px) {
    .community-heading-join {
        font-size: 38px;
    }

    .community-text {
        font-size: 16px;
    }
}


/* Mobile */
@media (max-width: 576px) {
    .community-heading-join {
        font-size: 26px;
        line-height: 1.3;
        padding: 0 15px;
    }

    .community-text {
        font-size: 14px;
        line-height: 1.5;
        padding: 0 15px;
    }

    .join-btn {
        font-size: 14px;
        padding: 10px 18px;
        width: 100%;
        display: block;
        margin: 0 auto;
    }


    .community-heading-join br {
        display: none; 
    }
}

.register-community-btn {
    background-color: #FD9D2D;
    color: #fff !important;
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--r2);
    cursor: pointer;
    transition: all .18s;
    border: none;
    white-space: nowrap;
    line-height: 1;
    padding: 13px 26px;
    text-decoration: none;
}

    .register-community-btn:hover {
        color: #fff;
        opacity: 0.9;
    }

.live-btn {
    background: #FD9D2D;
    color: #fff;
    border-radius: 20px;
    padding: 6px 18px;
    font-size: 12px;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}
.register-btn-wrapper {
    margin-top: 30px;
    

}

.register-btn {
    display: inline-block;
      background: #f08d16;
    color: #fff !important;
    border-radius: 30px;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    text-decoration: none !important;
    transition: 0.3s ease;
}



/* Responsive */
@media (max-width: 767px) {
   
    .register-btn {
        padding: 10px 22px;
        font-size: 14px;
        border-radius: 25px;
    }

    .register-btn-wrapper {
        margin-top: 20px;
    }
}
.live-icon {
    width: 14px;
    height: 14px;
}

.btn-register {
    background: #0F4F93;
}
.register-btn {
    background: #0F4F93;
    color: #fff;
    border-radius: 20px;
    padding: 6px 18px;
    font-size: 12px;
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.connectWithDataTesti .owl-dots {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    scroll-behavior: smooth;
}

.connectWithDataTesti .owl-dot {
    flex: 0 0 auto;
}
/* Only Mobile Responsive */
@media (max-width: 768px) {
    .hr-samvaad-about-heading {
        text-align: left;
        line-height: 1.3;
    }

        .hr-samvaad-about-heading br {
            display: none;
        }
}

/* Logo */
.community-logo {
    width: 154px;
    height: 60px;
    opacity: 1;
    display: block;
    margin: 0 auto 30px;
}

/* Heading */
.community-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 60px;
    line-height: 60px;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    color: #fff;
    margin-bottom: 20px;
}
.community-heading-join {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 35px;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    color: #fff;
    margin-bottom: 20px;
}
/* Mobile Responsive */
@media (max-width: 767px) {
    .about-us-title {
        font-size: 11px; 
        line-height: 16px;
        text-align: center;
        letter-spacing: 1px;
    }
    
}
/* Paragraph */
.community-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    color: #A0A3A8;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Mobile Responsive */
@media (max-width: 767px) {

    .community-heading-join {
        font-size: 24px;
        line-height: 34px;
        text-align: center;
        padding: 0 15px;
    }

    .community-text {
        font-size: 14px;
        line-height: 24px;
        text-align: center;
        padding: 0 15px;
    }
}

/* Button */
.join-btn {
    background-color: #FD9D2D;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
}
.hrlive {
    background-image: url(../images/hr-event-blue-bg.svg);
    background-size: cover;
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    padding: 40px 40px 0;
}
.hrlive-events {
    background-image: url(../images/hr-event-blue-bg.svg);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    padding: 80px;
    width: 100%;
}

.register-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 141px;
    height: 44px;
    background: #0F4F93;
    color: #fff !important;
    border-radius: 58px;
    padding: 12px 32px;
    opacity: 1;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border: none;
    transition: 0.3s ease;
}

    .register-btn:hover {
        background: #0c437d;
        color: #fff !important;
    }


.coming-soon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 141px;
    height: 44px;
   
    color: #fff !important;
    border-radius: 58px;
    padding: 14px 32px;
    margin-top: 15px;    
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    opacity: 1;
    transition: 0.3s ease;
}

  

/* Tablet */
@media (max-width: 992px) {
    .hrlive-events {
        padding: 20px 25px;
        border-radius: 20px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hrlive-events {
        padding: 20px 15px;
        border-radius: 15px;
        background-position: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hrlive-events {
        padding: 15px 12px;
    }
}

.hrlive-join {
    background-image: url(../images/hr-event-blue-bg.svg);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    padding: 80px;
}

/* Large desktops */
@media (min-width: 1200px) {
    .hrlive-join {
        padding: 90px;
        border-radius: 28px;
    }
}

/* Laptops / small desktops */
@media (max-width: 1199px) and (min-width: 768px) {
    .hrlive-join {
        padding: 60px;
        border-radius: 22px;
    }
}

/* Tablets & mobile */
@media (max-width: 767px) {
    .hrlive-join {
        padding: 40px;
        border-radius: 18px;
        background-position: center;
    }
}
@media (max-width: 480px) {
    .hrlive-join {
        padding: 25px;
        border-radius: 14px;
    }
}
.hrliveinnerdata div {

    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
}
.hrliveinnerdata{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.hr-badge {
    display: inline-flex;
    align-items: center;
    background: url(../images/hr-logo.svg);
    padding: 120px 309px;
    margin-bottom: 0px;
}

.countdown-box {
    display: inline-block;
    border-radius: 12px;
    overflow: hidden;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.19);
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(24.9px);
    -webkit-backdrop-filter: blur(24.9px);
}

.countdown-item {
    float: left;
    width: 70px;
    text-align: center;
    padding: 10px 5px 8px;
    position: relative;
}
.speaker-image img {
    display: inline-block;
    max-height: 300px;
    margin-top: 130px;
}
    .countdown-item:after {
        content: "";
        position: absolute;
        right: 0;
        top: 10px;
        height: 38px;
        width: 1px;
        background: rgba(255,255,255,0.15);
    }

    .countdown-item.last-item:after {
        display: none;
    }

    .countdown-item span {
        display: block;
        font-size: 28px;
        font-weight: 600;
        color: #ffffff;
        line-height: 28px;
        font-family: 'Poppins', sans-serif;
    }

    .countdown-item small {
        display: block;
        margin-top: 6px;
        font-size: 10px;
        letter-spacing: 1px;
        color: rgba(255,255,255,0.75);
        font-family: 'Poppins', sans-serif;
    }

.about-us-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0;
    text-align: left;
    vertical-align: middle;
    text-transform: uppercase;
    color: #333333;
 
}
.about-us-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: 0;
    vertical-align: middle;
    color: #333333;
   
}
.hr-samvaad-about-heading {
    margin-top: 10px;
    color: #333333;
    text-align: left
    
}
.about-us-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 27.2px;
    letter-spacing: 0;
    vertical-align: middle;
    color: #333333;
    margin-top: 10px;
    text-align: left
}
.hero-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 50px;
    line-height: 100%;
    letter-spacing: 0%;
    margin-top: 10px;
    color: #fff;
}
.hero-title-labour {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 42px;
    line-height: 100%;
    letter-spacing: 0%;
 
    color: #fff;
    text-align: center
      
}

/* Laptop */
@media (max-width: 1200px) {
    .hero-title-labour {
        font-size: 42px;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .hero-title-labour {
        font-size: 36px;
        line-height: 1.2;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-title-labour {
        font-size: 28px;
        line-height: 1.3;
        margin-top: 5px;
        text-align: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-title-labour {
        font-size: 24px;
    }
}
.hero-head {
    color: #fff;
    font-size: 20px;
    margin-top: 15px;
}
.hero-head-text {
    color: #fff;
    font-size: 20px;

}
.line-img {
    display: block;
    margin-bottom: 50px;
    max-width: 250px; 
}

.countdown {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.time-box {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    background: #111827;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.hero-head-text {
    color: #fff;
    font-size: 18px;
    margin-bottom: 24px;
    text-align: center
}

/* Laptop */
@media (max-width: 1200px) {
    .hero-head-text {
        font-size: 20px;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .hero-head-text {
        font-size: 18px;
        margin-bottom: 20px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-head-text {
        font-size: 16px;
        margin-bottom: 15px;
        text-align: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-head-text {
        font-size: 15px;
    }
}
    .time-box h2 {
        font-size: 42px;
        line-height: 1;
        margin-bottom: 10px;
        font-weight: 700;
    }

    .time-box span {
        font-size: 15px;
        opacity: .8;
        letter-spacing: .5px;
    }

.upcoming-events-section {
    padding: 60px 0;
    background: #f5f5f5;
}

.upcoming-events-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 500;
    color: #333333;
    margin-top: 47px;
}

/* Large desktops */
@media (min-width: 1200px) {
    .upcoming-events-heading {
        font-size: 40px;
        margin-top: 55px;
    }
}

/* Laptops / small desktops */
@media (max-width: 1199px) and (min-width: 768px) {
    .upcoming-events-heading {
        font-size: 32px;
        margin-top: 40px;
    }
}

/* Tablets & mobile */
@media (max-width: 767px) {
    .upcoming-events-heading {
        font-size: 24px;
        margin-top: 30px;
        text-align: center;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .upcoming-events-heading {
        font-size: 20px;
        margin-top: 20px;
    }
}

.event-card {
    background: #fff;
    border: 2px solid #e2e2e2;
    border-radius: 28px;
    min-height: 120px;
    margin-top: 20px;
    padding: 20px; 
}

.event-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 27px;
    font-weight: 500;
    color: #333333;
    margin-top: 0;
    margin-bottom: 15px;
    line-height: 36px;
}

.event-card-text {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    line-height: 28px;
    margin-bottom: 18px;
}

.event-info {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #555555;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-icon {
    width: 15px;
    height: 15px;
}

/* Large desktops */
@media (min-width: 1200px) {
    .event-card {
        padding: 24px;
    }

    .event-card-title {
        font-size: 28px;
    }
}

/*  Laptops / small desktops */
@media (max-width: 1199px) and (min-width: 768px) {
    .event-card {
        padding: 18px;
        border-radius: 24px;
    }

    .event-card-title {
        font-size: 24px;
        line-height: 32px;
    }

    .event-card-text {
        font-size: 15px;
        line-height: 26px;
    }
}

/* Tablets & mobile */
@media (max-width: 767px) {
    .event-card {
        padding: 16px;
        border-radius: 20px;
    }

    .event-card-title {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 10px;
    }

    .event-card-text {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 12px;
    }

    .event-info {
        font-size: 13px;
        gap: 6px;
    }

    .event-icon {
        width: 14px;
        height: 14px;
    }
}

/*  Small mobile */
@media (max-width: 480px) {
    .event-card {
        padding: 14px;
        border-radius: 16px;
    }

    .event-card-title {
        font-size: 18px;
        line-height: 26px;
    }

    .event-card-text {
        font-size: 13px;
        line-height: 22px;
    }

    .event-info {
        font-size: 12px;
        flex-wrap: wrap; 
    }

    .event-icon {
        width: 13px;
        height: 13px;
    }
}

.hr-samvaad-aboutus {

    padding: 60px 0;
}

.event-highlight-heading {
    font-family: Poppins;
    font-size: 34px;
    font-weight: 600;
    color: #333;
    margin-bottom: 35px;
}

.event-highlight-row {
    margin-left: -10px;
    margin-right: -10px;
}

    .event-highlight-row .col-sm-3 {
        padding-left: 10px;
        padding-right: 10px;
    }


.event-card {
    background: #fff;
    border: 2px solid #d9d9d9;
    border-radius: 28px;
    padding: 28px 30px;
    margin-top: 20px;
    min-height: 340px;
    width: 100%;
    box-sizing: border-box;
}
.event-card-hightlight {
    background: #fff;
    border: 2px solid #d9d9d9;
    border-radius: 28px;
   
    margin-top: 20px;
   
    width: 100%; 

    box-sizing: border-box;
}

.event-img {
    width: 100%;
    border-radius: 14px;
    display: block;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 55px;
    height: 55px;
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    line-height: 55px;
}

    .play-btn span {
        color: #fff;
        font-size: 20px;
        margin-left: 3px;
    }

.event-content {
    position: absolute;
    left: 15px;
    bottom: 15px;
}

    .event-content h4 {
        color: #fff;
        font-size: 16px;
        font-weight: 500;
        margin: 0 0 5px;
    }

    .event-content p {
        color: #fff;
        font-size: 12px;
        margin: 0;
    }
img.hrlogo {
    margin: 0px auto;
    max-width: 200px;
}
/* ------ HR SAMVAAD CSS END ------------*/
@media(max-width:780px) {
 .calc-grid { grid-template-columns:1fr } }
.calc-copy .section-title { font-size:clamp(1.65rem,2.8vw,2.7rem) !important }
.stat-row { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-top:24px }
.stat-box {
  background:var(--tl-white); border-radius:var(--r2);
  padding:16px; border-left:4px solid var(--tl-teal);
  box-shadow:var(--sh-sm);
}
.stat-box.orange { border-left-color:var(--tl-orange) }
.stat-num {
  font-family:var(--font-head); font-size:2.5rem;
  font-weight:600; color:var(--tl-teal); line-height:1;
}
.stat-box.orange .stat-num { color:var(--tl-orange) }
.stat-desc { font-size:14px; color:#6b7a90; margin-top:4px }

.calc-widget {
  background:var(--tl-navy); border-radius:var(--r4);
  padding:32px 28px; box-shadow:var(--sh-lg);
}
.calc-widget h3 {
  font-size:17px; font-weight:600; color:var(--tl-white);
  margin-bottom:24px;
}
.calc-row { margin-bottom:20px }
.calc-lbl {
  display:flex; justify-content:space-between; align-items:center;
  font-size:12px; font-weight:700;
  color:rgba(255,255,255,.55); margin-bottom:9px;
}
.calc-lbl span { font-size:14px; font-weight:600; color:var(--tl-white) }
input[type=range] {
  width:100%; -webkit-appearance:none; appearance:none;
  height:4px; border-radius:2px;
  background:rgba(255,255,255,.15); outline:none; cursor:pointer;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance:none; width:18px; height:18px;
  border-radius:50%; background:var(--tl-teal);
  border:2.5px solid #fff; cursor:pointer;
  box-shadow:0 2px 8px rgba(0,197,163,.5);
}
.results-grid {
  display:grid; grid-template-columns:1fr 1fr;
  gap:10px; margin:20px 0 20px;
  padding-top:20px; border-top:1px solid rgba(255,255,255,.1);
}
.res-box {
  background:rgba(255,255,255,.07);
  border-radius:var(--r); padding:14px 12px;
}
.res-label {
  font-size:10px; color:rgba(255,255,255,.4);
  text-transform:uppercase; letter-spacing:.07em; margin-bottom:6px;
}
.res-val {
  font-family:var(--font-head); font-size:1.3rem;
  font-weight:600; color:var(--tl-white);
}
.res-val.hi { color:var(--tl-teal) }
.calc-cta {
  display:block; width:100%; text-align:center;
  padding:13px; border-radius:var(--r2);
  background:var(--tl-teal); color:#fff;
  font-weight:600; font-size:14px;
  cursor:pointer; transition:all .18s; border:none;
  font-family:var(--font-body);
}
.calc-cta:hover { background:var(--tl-teal-dark) }

/* ─── ADD-ONS ───────────────────────────────────────────── */
.addon-section { background:var(--tl-white) }
.addons-grid {
  display:grid !important; grid-template-columns:repeat(auto-fit,minmax(190px,1fr));
  gap:14px; margin-top:40px;
}
.addon-card {
  background:var(--tl-off-white); border:1.5px solid var(--tl-light-gray);
  border-radius:var(--r2); padding:18px 16px;
  transition:all .2s;
}
.addon-card:hover {
  border-color:var(--tl-teal); background:var(--tl-teal-light);
  box-shadow:var(--sh-sm);
}
.addon-icon-wrap {
  width:40px; height:40px; border-radius:var(--r);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:12px; font-size:18px;
}
.addon-name { font-size:15px; font-weight:600; color:var(--tl-heading); margin-bottom:3px }
.addon-price {
  font-family:var(--font-head); font-size:1.3rem;
  font-weight:600; color:var(--tl-teal); margin-bottom:6px;
}
.addon-desc { font-size:12px; color:#6b7a90; line-height:1.5 }

/* ─── TESTIMONIALS ──────────────────────────────────────── */
.proof-section { background:var(--tl-off-white) }
.testi-grid {
  display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:18px; margin-top:40px;
}
.testi-card {
  background:var(--tl-white); border-radius:var(--r2);
  border:1px solid var(--tl-light-gray);
  padding:22px 20px; box-shadow:var(--sh-sm);
  min-height:365px;
}
.testi-stars { color:var(--tl-yellow); font-size:14px; letter-spacing:2px; margin-bottom:12px }
.testi-quote {
  font-size:13px; color:var(--tl-body-text);
  line-height:1.7; margin-bottom:18px; font-style:italic;
}
.testi-author { display:flex; align-items:center; gap:12px }
.testi-avatar {
  width:38px; height:38px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:14px; font-weight:600; color:#fff; flex-shrink:0;
}
.testi-name { font-size:13px; font-weight:600; margin:0px; }
.testi-role { font-size:11px; color:#6b7a90 }

/* ─── FAQ ───────────────────────────────────────────────── */
.faq-section { background:var(--tl-white) }
.faq-grid {
  display:grid; grid-template-columns:1fr 1fr;
  gap:14px; margin-top:40px;
}
@media(max-width:720px){ .faq-grid { grid-template-columns:1fr } }
.faq-item {
  border:1.5px solid var(--tl-light-gray);
  border-radius:var(--r2); overflow:hidden;
  background:var(--tl-white);
}
.faq-q {
  padding:16px 18px; font-size:13px; font-weight:700;
  color:var(--tl-heading); cursor:pointer;
  display:flex; justify-content:space-between; align-items:center;
  gap:12px; transition:background .15s;
}
.faq-q:hover { background:var(--tl-off-white) }
.faq-icon {
  width:24px; height:24px; border-radius:50%;
  background:var(--tl-teal-light); color:var(--tl-teal);
  display:flex; align-items:center; justify-content:center;
  font-size:14px; font-weight:600; flex-shrink:0;
  transition:transform .2s; line-height:1;
}
.faq-q.open .faq-icon { transform:rotate(45deg) }
.faq-a {
  padding:0 18px 16px; font-size:12px; color:#5a6a80;
  line-height:1.7; display:none;
}
.faq-a.open { display:block }

/* ─── FINAL CTA ─────────────────────────────────────────── */
.final-cta-section {
  background:var(--tl-navy); padding:72px 0;
  text-align:center; position:relative; overflow:hidden;
  border-radius:10px;
}

.final-cta-inner { position:relative; z-index:1 }
.final-cta-section h2 {
  font-size:clamp(1.8rem,4vw,2.9rem); color:var(--tl-white);
  margin-bottom:16px;
}
.final-cta-section h2 em { color:var(--tl-teal); font-style:normal }
.final-cta-section p {
  font-size:18px; color:rgba(255,255,255);
  max-width:460px; margin:0 auto 36px; line-height:1.7;
}
.final-btns { display:flex; gap:14px; justify-content:center; flex-wrap:wrap }
.final-trust {
  font-size:12px; color:rgba(255,255,255,.7);
  margin-top:22px; line-height:1.7;
}

/* ─── FOOTER (matches timelabs footer) ─────────────────── */
footer {
  background:var(--tl-navy-dark);
  border-top:1px solid rgba(255,255,255,.07);
  padding:24px 0;
}
.footer-inner {
  display:flex; align-items:center;
  justify-content:space-between; gap:20px; flex-wrap:wrap;
}
.footer-links {
  display:flex; gap:18px; flex-wrap:wrap;
}
.footer-links a {
  font-size:12px; color:rgba(255,255,255,.35);
  transition:color .15s;
}
.footer-links a:hover { color:rgba(255,255,255,.75) }
.footer-cities { font-size:12px; color:rgba(255,255,255,.25) }
.footer-copy { font-size:12px; color:rgba(255,255,255,.25) }

/* ─── ANIMATIONS ────────────────────────────────────────── */
.fade-up {
  opacity:0; transform:translateY(22px);
  transition:opacity .55s ease, transform .55s ease;
}
.fade-up.show { opacity:1; transform:none }

/* ─── custom  ─────────────────────────────────────────── */
header .menu-main{background: transparent;}
header .navbar ul li .feather-home{color:#ff9e2c;}
header .navbar ul li a.menu-link {color: #ffffff !important;}
.brand-logo{display:none}
.brand-logo-2{display:block}
header.darkHeader .brand-logo {display: block;}
header.darkHeader .brand-logo-2 {display: none;}
header.darkHeader .navbar ul li a.menu-link {color: #333333 !important;}
header nav .header-btn{display:none;}
.header nav .header-btn{display:none;}
.talkexpert { white-space: nowrap; margin-left: 10px; display: flex; color: #ffff; border-radius: 50px; border: 2px solid #fff; min-width: 193px; padding: 5px 12px; font-weight: 500; column-gap: 5px; }
header.darkHeader .talkexpert {border-color: #333;color: #333;}
header.darkHeader .talkexpert img{ filter: brightness(0) saturate(100%);}
.trustedclients .owl-nav{display:none;}
.clientstestimonials .client-details h3{font-size:16px; text-align:left;}
/*.client-details img {width: 100px !important;object-fit: contain;}*/
.trustedclients .clientname p {text-align: left;margin-top: 10px;}
.clientstestimonials .about-client{text-align: center;}
.trustedclients .client-card{padding:0px;}
/*.trustedclients{margin-top:15px;}*/
a.view-more {margin-left: 10px; color: #000;}
.connectWithDataTesti .owl-stage-outer {margin-bottom: 15px;}
/*.trustedclients {margin-top: 40px;}*/
div#connectdiv {display: none;}
.gpanel .panel-heading {font-size: 14px;font-weight: 500;color: var(--tl-heading);}
.faq-section .panel-body , .faq-section .panel-body li{font-size:14px;}
.faq-section .gpanel .panel-heading {color:#333;}
.menu li.menu-item:hover > a, header .navbar ul li a.menu-link.active{color:#ff9e2c !important}
.pricingBox.desktopView {margin-top: 50px;}
.faq-section .gpanel {margin-top: 50px;}
.modulename span{font: 500 18px / 5px "Poppins", sans-serif;}
.moduleHead b.head{font: 500 18px / 15px "Poppins", sans-serif;}
.modulename p, .moduleHead p{font: 400 12px / 14px "Poppins", sans-serif;}
.moduleHead{row-gap:0px;}
.pricingBodyDataInner > div{height:auto;}
.priceHead p{font-size:14px;}
.parentInner p{font-size:13px; line-height:normal;}
.pricingHeader > div, .pricingBodyDataInner > div{padding:1px 15px;}
.pricingBodyDataInner:last-child > div {border-bottom: 1px solid #eaeaea;}
header .nav-menu{max-width:1380px;}
iframe#kiwi-big-iframe-wrapper {display: none;}
.whatsappFramOpener {display: none;}
.connect-cta{margin-top:30px;}
.section-sub-own{font-size:14px; margin-bottom:20px; margin-left:auto; margin-right:auto;}
.parentHead > div:last-child, .pricingBodyDataInner > div:last-child{display:none;}

.full-layout{display:flex;justify-content:center; align-items:center; text-align:center}
.full-layout .hero-sub{max-width:100%; width:100%;}
.docheading {font-size: clamp(1.7rem, 1.9vw, 2.5rem); color:#2C2C2C; column-gap: 15px; display:flex;}
.docheading img{width: 25px}
.hr-docs { display: flex; flex-wrap: wrap; justify-content: space-between; row-gap: 15px; column-gap: 7px; margin-top:30px;}
.hr-docs li a img {width: 2.5rem;}
.hr-docs li a { border: 1px solid #E6F3FF; display: flex; align-items: center; column-gap: 7px; padding: 10px 10px; min-width: 300px; border-radius: 12px; color: #131927; font-size: 15px; max-width: 300px; white-space: nowrap; }
.hr-docs li {min-width: 300px; max-width: 300px;}
.hrdoc-logo .brand-section {background: transparent !important;}
.hr-docs li a:hover {color: #0F4F93; background: #E6F3FF;}
.hr-docs li a:hover img { filter: brightness(0) saturate(100%) invert(14%) sepia(71%) saturate(3872%) hue-rotate(201deg) brightness(97%) contrast(88%); }
.hrdoc-section {background: #F8F9FA; padding: 40px 0px 60px;}
.policydoc-section{padding: 40px 0px 60px;}
.banner-bredcurm { display: flex; color: #000; justify-content: flex-start; column-gap: 5px;flex-wrap:wrap;}
.banner-bredcurm li a:hover, .banner-bredcurm li a.active {color: #ff9e2c;}
.details-left-inner {background: #F8F9FA;padding: 1px 20px 15px; border-radius: 14px;}
.count-row ul {display: flex; align-items: center; column-gap: 13px;}
.count-row ul li i {color: #000;}
.count-row ul li {border-right: 1px solid #000; padding-right: 10px; line-height: normal;}
.count-row ul li:last-child {border-right: none;}
.details-mid h4 {color: #2C2C2C; margin-top: 3rem; margin-bottom: 2rem;}
.forum-box {border: 1px solid #F5D08D;background: #FFEFD3;border-radius: 10px;margin-top: 30px; display:flex; column-gap:15px;overflow:hidden; align-items:center;}
.lastupdate {display: flex;justify-content: flex-end;}
.forum-box h5 {font-size: 20px;font-weight: 500;color: #2C2C2C;}
.forum-box p{color:#2C2C2C}
.details-main {display: flex; column-gap: 25px;position:relative;}
.details-right {min-width: 360px;}
.details-right-inner {background: #F1F3F4;padding: 15px; border-radius: 10px;margin-bottom:15px;}
.similar-list li a {display: flex; align-items: center; column-gap: 10px; margin-bottom:15px; border-left: 2px solid transparent; padding: 5px;}
.similar-list li a p span {display: flex;font-size:12px;}
.similar-list li a p {margin: 0px;}
.similar-list li a p span.list-title {color: #2C2C2C; font-weight: 500; font-size:14px;}
.similar-list li a p span.list-date {color: #888888;}
.details-right-inner h3.docheading {margin-top: 5px; margin-bottom: 15px;}
.similar-list li a.active span.list-title, .similar-list li a:hover span.list-title {color: #0F4F93;}
.similar-list li a:hover img {filter: brightness(0) saturate(100%) invert(19%) sepia(95%) saturate(1418%) hue-rotate(192deg) brightness(97%) contrast(91%);}
.similar-list li a.active, .similar-list li a:hover {background: #fff; border-left: 2px solid #49A1FF;border-radius: 5px;}
.forum-right {min-width: 397px;margin-right: 0px;}
.forum-left {padding: 15px;}
.pricingBodyDataInner > div{min-height: 4.3rem;}
.micro-strip-text {text-align: center; max-width: 800px; margin-left: auto; margin-right: auto;}
.micro-strip-text h2{color:#fff !important;}
.modulename {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    padding-bottom: 10px !important;
}
.light-blue-btn{border: 1px solid #006ffa !important;}
.parentInner p{padding-left:48px !important}
.parent.active .priceHead p:after{left:18px !important}
.priceHead.active p, .priceHead.cursor:hover i, .priceHead.cursor:hover p, .priceHead.cursor i{color:#000;}
.modulename p {
    position: absolute;
    top: 36px;
}
.compareall {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}
    .compareall a {
        color: #001659;
        text-decoration: underline;
        font-size: 20px;
        font-weight: normal;
    }
.pdf-editer {
    padding: 10px;
}
.details-left {
    width: 100%;
}
.pdfbox {
    border: 1px solid #dbdfe3;
    border-radius: 5px;
    margin-top:30px;
}
.pdfbox-inner {
    background: #f5f7f9;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 5px 10px;
}

.hrpolicymodal .modal-body {border: 1px solid #F8F9FA; border-radius: 15px; background:#FFEDDE}
.hrpolicymodal .modal-content {border-radius: 15px;}
.hrpolicymodal .modal-body h2 {color: #0A3A7C !important; font-size: 24px !important; position: relative;}
.hrpolicymodal .modal-body h2:after {content: ""; width: 100px; position: absolute; height: 2px; background: #FF9D2C; bottom: 10px;}
.hrpolicymodal .modal-body .form-group label {font: normal 500 15px / 20px "Poppins", sans-serif !important;}
.hrpolicymodal .contact-form input, .hrpolicymodal .contact-form select {border: 1px solid #DCDFE3 !important; border-radius: 10px; font-size:14px;}
.hrpolicymodal .country-mobile-code{display: flex;}
.hrpolicymodal .country-mobile-code select{border-right: 0 !important;border-radius: 10px 0px 0px 10px !important;padding-left:10px !important}
.hrpolicymodal .country-mobile-code input{width:100% !important; border-left: none !important; border-radius: 0px 10px 10px 0px !important;}
.hrpolicymodal .form-check {display: flex;align-items: center;column-gap: 10px;}
.hrpolicymodal .form-check .form-check-input { font-size: 11px !important; height: 17px !important; width: 17px !important; }
.hrpolicymodal .form-check .form-check-label {margin: 0px !important; font-size: 15px !important; font-weight: 500 !important;}
.hrpolicymodal span.policy {font-weight: 500 !important;}
.hrpolicymodal .modal-body .form-group label.is-invalid { margin-top: 3px; font-weight: 400 !important; font-size: 14px !important; }
form.contact-form .country-mobile-code input {width: 74.33% !important; display: inline-block;}
form.contact-form .country-mobile-code select{width:25% !important}
.hrpolicymodal .light-blue-btn{width: 100%;background: #0A3A7C !important;}
.hrpolicymodal .light-blue-btn:hover{color:#fff !important}
ul.similar-list {max-height: 375px;overflow: auto;}
.page-pera{font-size:16px;}
#webinarmodal button.close { background: #35e3ea; position: absolute; right: -6px; top: -10px; border-radius: 50px; padding: 10px; width: 25px; height: 25px; display: flex; align-items: center; justify-content: center; font-size: 17px; }
.resiterbox { background: #031d65; width: 100%; display: block; margin-top: -1px; text-align: center; color: #fff; padding: 10px; }
.mobile-list-btn{display:none;}
.details-left .section-title {display: flex; align-items: center;column-gap:5px;margin-bottom:0px;}
.cta-navy:focus {color: #fff; border: none !important; outline: none;}
.docheading span span {font-weight: 600;text-decoration: underline; color: #0a397c;}
.pdf-editer iframe{border: none; border-radius: 8px; width:100%; height:1130px;}



/*  QUICK DECISION */
.qd-sec {
    padding: 58px 0 40px;
    text-align: center;
    background: linear-gradient(186deg, #FFF 7.45%, #F2F8FF 95.99%);
}

.qd-eyebrow {
    font-size: 13.5px;
    font-weight: 700;
    color: #1a5ec8;
    margin-bottom: 4px;
    display: block;
}

    .qd-eyebrow .bold-part {
        font-weight: 900;
    }

.qd-title {
    font-size: 14px;
    color: #555;
    font-weight: 400;
    margin-bottom: 32px;
}

/* QD Table */
.qd-table-wrap {
    overflow: hidden;
    border: 1px solid rgba(222, 231, 241, 1);
    margin-top: 30px;
}

.qd-thead {
    display: flex;
    background: #fff;
    border-bottom: 1px solid rgba(222, 231, 241, 1);
}

.qd-th {
    padding: 11px 16px;
    font-size: 15px;
    font-weight: 500;
    color: rgba(15, 79, 147, 1);
    text-align: left;
}

    .qd-th:nth-child(1) {
        flex: 2.2;
    }

    .qd-th:nth-child(2) {
        flex: 1.0;
        border-left: 1px solid rgba(222, 231, 241, 1);
        border-right: 1px solid rgba(222, 231, 241, 1);
    }

    .qd-th:nth-child(3) {
        flex: 3.0;
    }

.qd-tr {
    display: flex;
    align-items: center;
    background: #fff;
    border-bottom: 1px solid rgba(222, 231, 241, 1);
    transition: background 0.15s;
}

    .qd-tr:last-child {
        border-bottom: none;
    }

    .qd-tr:hover {
        background: #f8faff;
    }

.qd-td {
    padding: 13px 16px;
    font-size: 12.5px;
    min-height:75px;
    display:flex; align-items:center;
}

    .qd-td:nth-child(1) {
        flex: 2.2;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .qd-td:nth-child(2) {
        flex: 1.0;
        border-left: 1px solid rgba(222, 231, 241, 1);
        border-right: 1px solid rgba(222, 231, 241, 1);
    }

    .qd-td:nth-child(3) {
        flex: 3.0;
        font-size: 14px;
        color: #021124;
        line-height: 1.55;
        text-align:left;
    }

.ind-icon {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.ic-g {
    background: #e6f4ea;
    color: #2e7d32;
}

.ic-r {
    background: #fdecea;
    color: #c62828;
}

.ic-b {
    background: rgba(220, 246, 238, 1);
    color: #e8eaf6;
}


.ic-sb {
    background: rgba(238, 237, 255, 1);
}

.ic-com {
    background: rgba(227, 241, 252, 1);
}
.ic-eo {
    background: rgba(243, 229, 245, 1);
}

.ic-o {
    background: #E3F1FC;
    color: #E3F1FC;
}

.ind-n {
    font-weight: 500;
    font-size: 14px;
    color: #0F4F93;
    display: block;
}
.ind-s {
    font-size: 12px;
    color: #021124;
    text-align: left;
}
.qd-td span {
    text-align: left;
}
.ind-icon img {
    max-width: 25px;
}
.tag-tl {
    display: flex;
    background: #E3F1FC;
    color: #0F4F93;
    border-radius: 10px;
    padding: 5px 12px;
    font-size: 10.5px;
    font-weight: 600;
    margin: 2px 2px;
    column-gap: 5px;
    align-items:center;
}
.tag-tl:before {
    content: "";
    height: 8px;
    width: 8px;
    background: #0F4F93;
    display: inline-block;
    border-radius: 50px;
}

.tag-kk {
    display: flex;
    background: #E3F1FC;
    color: #5C5C5C;
    border-radius: 10px;
    padding: 5px 12px;
    font-size: 10.5px;
    font-weight: 600;
    margin: 2px 2px;
    align-items: center;
    column-gap: 5px;
}
.tag-kk:before {
    content: "";
    height: 8px;
    width: 8px;
    background: #5C5C5C;
    display: inline-block;
    border-radius: 50px;
}
/* STATS ROW */
.stats-sec {
    background: #eef3fb;
    padding: 36px 0;
}

.stats-inner {
    display: flex;
    flex-wrap: wrap;
    column-gap: 15px;
    justify-content: center;
    align-items: center;
    margin: 30px 0px auto;
}

.vs-stat-box {
    flex: 1;
    padding: 30px 20px;
    text-align: center;
    background: #EDF3FE;
    border: 4px solid #E3EBFA;
    border-radius: 9px;
}


.stat-pre {
    font-size: 12px;
    font-weight: 500;
    color: #0F4F93;
    display: inline-block;
    margin-bottom: 3px;
}

.stat-num-in {
    font-size: 44px;
    font-weight: 600;
    color: #0F4F93;
    line-height: 1;
    display: inline-block;
    border-bottom: 3px solid #FF9E2C;
}

    .stat-num-in sup {
        font-size: 20px;
        vertical-align: top;
        margin-top: 15px;
        display: inline-block;
    }

.stat-lbl {
    font-size: 14px;
    color: #333333;
    margin-top: 7px;
    line-height: 1.45;
}
.section-title .d-block{display:block;}
/* COMPARE TABLE SECTION */
.cmp-sec {
    background: #ffffff;
    padding: 50px 0 50px;
}

.sec-hd {
    text-align: center;
    margin-bottom: 34px;
}

    .sec-hd h2 {
        font-size: 24px;
        font-weight: 800;
        color: #0d1b3e;
        line-height: 1.3;
    }

        .sec-hd h2 .orange {
            color: #e84a2f;
        }

.cmp-tbl-wrap {
    overflow-x: auto;
}

table.ct {
    width: 100%;
    border-collapse: separate;
    min-width: 480px;
    border-radius:14px;
}

.ct thead th {
    padding: 20px 0px;
    background: transparent;
    border-bottom: 1px solid #DEE7F1;
    border-radius: 10px 10px 0px 0px;
    border: 1px solid #DEE7F1;
}

    .ct thead th:first-child {
        width: 42%;
        text-align: left;
        padding: 14px 18px;
        font-size: 12px;
        font-weight: 600;
        color: #2D2E2F;
    }
.tl-hd img {
    max-width:100px;
    height:30px;
}
.ct-th-tl {
    text-align: center;
    border-top: 2px solid #ff9e2c !important;
    border-left: 2px solid #ff9e2c !important;
    border-right: 2px solid #ff9e2c !important;
    width:30%;
}

.ct-th-kk {
    background: #fff8f5;
    border: 1.5px solid #f5c5b0;
    border-bottom: none;
    padding: 14px 20px;
    text-align: center;
}

.tl-hd {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: #fff;
    font-size: 13.5px;
    font-weight: 800;
}

    .tl-hd .tl-ico {
        width: 22px;
        height: 22px;
        background: #4a8fd4;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 11px;
        font-weight: 900;
        color: #fff;
    }

.kk-hd {
    font-size: 15px;
    font-weight: 900;
    color: #e84a2f;
}

    .kk-hd sup {
        font-size: 9px;
    }

.ct tbody tr:hover td {
    background: #f9fbff;
}

.ct tbody td {
    padding: 11px 18px;
    font-size: 12.5px;
    color: rgba(114, 114, 115, 0.9);
    vertical-align: middle;
    border-left: 1px solid #DEE7F1;
    border-bottom: 1px solid #DEE7F1;
}

    .ct tbody td.col-tl {
        text-align: center;
        background: #FFFAF5;
        border-left: 2px solid #FF9E2C;
        border-right: 2px solid #FF9E2C;
        font-weight: 600;
        font-size: 12.5px;
    }

    .ct tbody td.col-kk {
        text-align: center;
        font-size: 12.5px;
        background: rgba(243, 238, 254, 0.4);
        border-right: 1px solid #E1DBF6;
    }



.v-both {
    color: #0F4F93;
    font-weight: 500;
}

.v-strong {
    color: #7C46F1;
    font-weight: 500;
}
.col-tl .v-strong {
    color: #0d47a1;
    font-weight: 500;
}
.v-deep {
    color: #0d47a1;
    font-weight: 500;
}

.v-yes {
    color: #7C46F1;
    font-weight: 500;
}
.col-tl .v-yes {
    color: #0d47a1;
    font-weight: 500;
}

.v-no {
    color: #c62828;
    font-weight: 500;
}

.v-smart {
    color: #0F4F93;
    font-weight: 500;
}

.v-addon {
    color: #7C46F1;
    font-weight: 500;
}

.v-limited {
    color: #0F4F93;
    font-weight: 500;
}

.v-basic {
    color: #7C46F1;
    font-weight: 500;
}

.v-text {
    color: #7C46F1;
    font-weight: 500;
}

.col-tl-mid {
    border-radius: 0px 0px 10px 10px;
    border-bottom: 2px solid #FF9E2C !important;
}
td.col-tl-first, .col-kk-last {
    border-radius: 0px 0px 10px 10px;
}
/* PRICING SECTION */
.pricing-sec {
    background: linear-gradient(3deg, #FFF 7.45%, #F2F8FF 95.99%);
    padding: 60px 0 50px;
    text-align: center;
}
    .pricing-sec Howwework-sec {
        background-color: #F8FAFF;
    }

    .vs-pill {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 6px 16px;
        font-size: 12px;
        font-weight: 600;
        color: #0d1b3e;
        margin: 28px 0px;
    }

.d-tl {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0F4F93;
    display: inline-block;
}

.d-kk {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #7C46F1;
    display: inline-block;
}

.p-cards {
    display: grid;
    gap: 18px;
    justify-content: center;
    margin-top: 0;
    grid-template-columns: repeat(4, 1fr);
}
.p-cards > :nth-child(5) {
    grid-column: 2;
}
.p-cards > :last-child {
    grid-column: 3;
}
.p-card {
    background: linear-gradient(3deg, #FFF 7.45%, #F2F8FF 95.99%);
    border: 2px solid rgba(216, 233, 255, 1);
    border-radius: 12px;
    padding: 22px 20px;
    flex: 1;
    text-align: left;
    box-shadow: 0 2px 12px rgba(13,27,62,0.05);
}

.p-card-h {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #0F4F93;
    margin-bottom: 16px;
    border-bottom: 1px solid #D8E9FF;
    padding-bottom: 10px;
}

.p-card-ico {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    background: #eef2ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #1a5ec8;
    flex-shrink: 0;
}

.p-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 9px;
    font-size: 14px;
    color: #444;
}
.p-row.p-row1 {
    border-bottom: 1px solid #D8E9FF;
    padding-bottom: 15px;
    color:#0F4F93;
}
.p-row.p-row2{color:#7C46F1}

.p-bold {
    font-weight: 700;
    color: #0d1b3e;
}

.p-muted {
    font-weight: 500;
    color: #7a90b0;
}
.pricing-sec .section-sub {
    max-width: 700px;
}
.factors {
    color: #ff9e2c;
    text-transform: uppercase;
    font-weight: 500;
}

.hero-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-see {
    background: #0A3A7C;
    color: #fff;
    border-radius: 22px;
    padding: 10px 22px;
    font-size: 12.5px;
    font-weight: 600;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
}

    .btn-see:hover {
        background: linear-gradient(135deg,#2c62b5 0%,#1e4d9a 100%);
        color: #fff;
        text-decoration: none;
    }

.btn-demo {
    background: rgb(255 255 255);
    color: #0A3A7C;
    border: 1.5px solid rgba(255,255,255,0.35);
    border-radius: 22px;
    padding: 10px 22px;
    font-size: 12.5px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

    .btn-demo:hover {
        background: rgba(255,255,255,0.08);
        color: #fff;
        text-decoration: none;
    }
.best-choice{display:none;}

.client-logo-glossary .brand-section {
    position: inherit;
}
.glossary-hero .hero-sub{font-size: 18px;}
.hrtechsection {
    text-align: left;
    background: linear-gradient(186deg, #FFF 7.45%, #F2F8FF 95.99%);
}
.hrtechsection h2{
    font-weight:600;
    margin-top:0px;
}
.hrtechsection h4 {
    color: #333333;
    margin: 20px 0px 14px;
    font-size:20px;
}
.hrtechsection ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
    font-size:16px;
}
.hrtechsection ul li::before {
    content: "";
    background-image: url(https://d1e4eypuuiznsv.cloudfront.net/wwwroot/images/check_icon.svg);
    height: 16px;
    width: 16px;
    display: inline-block;
    background-size: cover;
    position: absolute;
    top: 5px;
    left: -3px;
}
.hrtechsection p{font-size:16px;}

.quicksearch {
    width: 300px;
    padding: 7px 10px 10px 34px;
    border-radius: 8px;
    border: 1px solid #ddd;
}
.quicksearch:focus{border: 1px solid #ddd; outline:none;}

.alphabet-filter {
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 4px;
    border: 1px solid #f4f2f2;
    border-radius: 5px;
}

    .alphabet-filter button {
        margin: 2px;
        padding: 6px 10px;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        background: transparent;
    }

        .alphabet-filter button.active {
            background: #0F4F93;
            color: #fff;
        }

.gridglossary {
    max-width: 1380px;
}

.element-item {
    width: 32.333%;
    background: #fff;
    padding: 15px;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    margin-bottom: 15px;
    border:1px solid #DBDFEA80;
}

.element-item h3, .element-item h4 {
    margin: 0 0 10px;
    color: #2C2C2C;
    font-size: 18px;
    font-weight: 500;
}
.element-item strong {
    font-size: 13px;
    font-weight: 600;
} 
.element-item p{
    font-size:13px;
}
.glossar-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 15px;
}
.glossar-h h2 {
    margin-bottom: 4px;
    font-weight: 600;
}
.glossar-search{position:relative;}

.glossar-search::before {
    content: "\e9c1";
    font-size: 18px;
    font-family: 'feather' !important;
    position: absolute;
    left: 11px;
    color: #7e7975;
    height: 20px;
    width: 20px;
    z-index: 1;
    top: 6px;
}

.no-result {
    min-height: 60px;
    display: block;
    align-items: center;
    text-align: center;
}
.glossary-download, .glossary-download:hover, .glossary-download:focus {
    background: #FF9E2C;
    color: #fff;
}
.comp-left{text-align:left;}
.comp-left .hero-btns{justify-content:flex-start;}
.vs-images-mob{display:none;}
.comp-hero{padding:30px 0px;}
/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media screen and (min-width: 991px) and (max-width: 1280px) {
    header .nav-menu {
        width: auto !important;
    }
}
@media(max-width:1199px) {
.qd-thead{display:none;}
.qd-tr{display:block;}
 .qd-table-wrap {display: grid; grid-template-columns: 1fr 1fr; gap: 20px;border:none;}
.qd-td:nth-child(2) { border: none; min-height: auto; padding-top: 0; padding-bottom: 0; }
 .qd-tr, .qd-tr:last-child{border: 2px solid #F1F1FF; border-radius: 14px;box-shadow: 0 2px 12px rgba(13, 27, 62, 0.05);}
 .p-cards{display: grid; grid-template-columns: repeat(3, 1fr)}
 .best-choice{display:block;}
.qd-td:nth-child(2) {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    border-top: 1px solid #DEE7F1;
    padding-top: 15px;
}
 .best-choice {
    color: #0F4F93;
    font-weight: 500;
    font-size: 13px;
    margin-bottom: 4px;
}
 .vs-stat-box{min-height:165px;}
  .element-item{width: 30.333%}
}
@media(max-width:991px) {
 header .burger{top:-3px;}
.parentHead > div:last-child, .pricingBodyDataInner > div:last-child{display:block;}
header .burger-line{background:#fff}
header.darkHeader .burger-line{background:#333}
.brand-section{padding:20px 0px 20px;}
.hero{padding:50px 0px 56px;}
.pricingBox.mobileView {margin-top: 30px;}
.pricingBox.mobileView .pricingHeader > div{row-gap:10px;}
.pricingBox.mobileView .moduleHead b.head {font: 500 20px / 34px "Poppins", sans-serif;}
.trustedclients .owl-nav { width: 100%;top: 40%;}
.trustedclients .owl-carousel .owl-nav button.owl-next, .trustedclients .owl-carousel .owl-nav button.owl-prev{width:25px; height:25px;font-size:20px;}
.trustedclients .owl-nav{display:flex}
.trustedclients .owl-dots{display:none}
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev{height:25px; width:25px;}
.testi-card{padding:22px 35px}
.plans-grid {display: flex !important; overflow-x: auto; margin-top:15px;}
.plan-card{min-width:260px;margin-top: 15px;}
.recommended-strip{justify-content:center !important;}
.plans-grid::-webkit-scrollbar {display: none;}
.plans-grid {scrollbar-width: none;  -ms-overflow-style: none;}
header .navbar ul li a.menu-link{ color: #0F4F93 !important;}
.talkexpert {position: absolute;right: 50px;}
.hero h1{line-height:normal;}
.details-right{display:none; position:absolute; top:12.7rem; right:0px;}
.hr-docs li a{font-size:14px;}
.hr-docs li a img {width: 2.3rem;}
.page-pera {font-size: 14px;}
.mobile-list-btn{display:block;}
.lastupdate {display: flex;justify-content: space-between; align-items: center; margin-bottom: 10px;}
.details-right-inner h3.docheading{display:none;}
.details-right-inner{box-shadow: 0px 5px 15px 5px rgb(0 0 0 / 8%);background:#fff;padding-right:0px;}
.similar-list li a img {width: 30px;}
.similar-list li a{margin-bottom:5px;}
.webinarbox{display:none;}
.details-right {min-width: 315px;}

.details-right:before{content: ""; position: absolute; right: 25px; transform: rotate(0deg); top: -23px !important; bottom: auto !important; }
.details-right:after{content: "";position: absolute;right: 25px;transform: rotate(0deg);bottom: auto !important;border: 12px solid transparent;border-bottom-color: #eee;top: -25px !important;}
.android .pdf-editer::before {display: block;}
.ios .pdf-editer::before {display: none;}
    .vs-images-mob{display:block; max-width:400px; margin-bottom:40px; margin-left:auto; margin-right:auto;width:90%;}
    .comp-right{display:none}
    .comp-left {text-align: center;}
    .comp-left .hero-btns {justify-content: center;}
    .comp-hero{padding:0px 0px;}}

@media(max-width:960px) {
    .hero-layout { grid-template-columns:1fr; gap:40px }
  .hero-sub { max-width:100% }
    .talkexpert span{display:none}
    .talkexpert{min-width:52px;}
   
}
@media(max-width:700px){
    .section-sub{font-size:16px;}
    .cost-calc-sub{font-size:14px !important;}
   .hero-badge{font-size:11px;}
  .hero-stats { gap:20px }
  .hero-sub {font-size:16px; }
  .plans-grid { grid-template-columns:1fr }
  .micro-strip { flex-direction:column; text-align:center }
  .nav-links { display:none }
  .section-pad { padding:48px 0 }
  .faq-section .gpanel{margin-top:0px;}
  .btn-primary-lg, .hero-ctas .btn-ghost-white{padding: 14px 14px !important;}
  .comp-stat{padding:0px 15px;}
  .micro-strip-text p{font-size:14px;}
  .qd-table-wrap{grid-template-columns: 1fr;}
  .qd-sec{padding: 20px 0 40px;}
  .qd-td:nth-child(1){display:block;text-align:left;}
  .ind-icon{margin-bottom:10px}
    .qd-sec .col-sm-12, .cmp-sec .col-sm-12, .pricing-sec .col-sm-12 {padding: 0px;}
    .p-cards {display: flex;flex-wrap: wrap;flex-direction: column;}
  .stats-inner{display:block;}
  .vs-stat-box {min-height: auto; margin-bottom: 10px;}
  .tl-hd img {max-height: 14px;}
  .ct tbody td{padding: 10px 5px;}
  .ct-th-tl, .ct-th-kk {width:30%;}
  .hero-btns a {width: 100%; text-align: center; justify-content: center;}
  table.ct{display:contents;}
  .glossary-hero .hero-sub { font-size: 15px;}
  .hrtechsection p, .hrtechsection ul li {font-size: 14px;}
  .hrtechsection h4{font-size:18px;}
    .glossar-h h2 {margin-top: 0;font-size: 20px;text-align: center;}
    .glossar-row{flex-direction:column; margin-bottom:15px;}
    .element-item { width: 100%}
}


.cost-calc-section {background: var(--tl-navy);padding: 64px 0;position: relative;overflow: hidden;}
.cost-calc-section::before {content: '';position: absolute; top: -160px; right: -100px;width: 420px; height: 420px; border-radius: 50%;background: radial-gradient(circle, rgba(0,197,163,.1) 0%, transparent 70%);pointer-events: none;}
.cost-calc-section::after {content: '';position: absolute; bottom: -80px; left: -60px;width: 280px; height: 280px; border-radius: 50%;background: radial-gradient(circle, rgba(0,197,163,.06) 0%, transparent 70%);pointer-events: none;}
.cost-calc-inner {position: relative; z-index: 1;max-width: 820px; margin: 0 auto;text-align: center;}
.cost-calc-inner 
.eyebrow { color: var(--tl-teal); justify-content: center }
.cost-calc-inner
.eyebrow::before { background: var(--tl-teal) }
.cost-calc-title {font-family: var(--font-head);font-size: clamp(1.6rem, 3.2vw, 3.7rem);font-weight: 700; color: #fff;margin-bottom: 10px; line-height: 1.15;}
.cost-calc-title span { color: var(--tl-teal) }
.cost-calc-sub {font-size: 20px; color: rgba(255,255,255);margin-bottom: 40px; line-height: 1.6;}
.emp-input-row {display: flex; align-items: center; gap: 0;background: rgba(255,255,255,.07);border: 1.5px solid rgba(255,255,255,.15);border-radius: var(--r3);padding: 6px 6px 6px 24px;margin-bottom: 28px;transition: border-color .2s;}
.emp-input-row:focus-within { border-color: var(--tl-teal); background: rgba(0,197,163,.06);}
.emp-input-label {font-size: 14px; font-weight: 700; color: rgba(255,255,255,.5);white-space: nowrap; flex-shrink: 0;}
.emp-number-input {flex: 1; background: transparent; border: none; outline: none;font-family: var(--font-head);font-size: 2rem; font-weight: 600; color: #fff;text-align: center; min-width: 80px; max-width: 160px;padding: 4px 8px;-moz-appearance: textfield;}
.emp-number-input::-webkit-outer-spin-button,
.emp-number-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0 }
.emp-input-suffix {font-size: 13px; font-weight: 600; color: rgba(255,255,255,.4);flex-shrink: 0; padding-right: 8px;}
.emp-calc-btn {background: var(--tl-teal); color: #fff;font-family: var(--font-body); font-size: 14px; font-weight: 600;border: none; border-radius: var(--r2);padding: 13px 24px; cursor: pointer;transition: all .18s; white-space: nowrap; flex-shrink: 0;}
.emp-calc-btn:hover { background: var(--tl-teal-dark); transform: translateY(-1px) }

.emp-slider-wrap {display: flex; align-items: center; gap: 14px;margin-bottom: 36px;}
.emp-slider-wrap input[type=range] {flex: 1; height: 5px;background: rgba(255,255,255,.15);border-radius: 3px;}
.emp-slider-wrap input[type=range]::-webkit-slider-thumb {width: 22px; height: 22px;background: var(--tl-teal);border: 3px solid #fff;box-shadow: 0 2px 10px rgba(0,197,163,.6);}
.slider-tick {font-size: 11px; font-weight: 700;color: rgba(255,255,255,.3); flex-shrink: 0;min-width: 36px; text-align: center;}

.cost-results-grid {display: grid;grid-template-columns: repeat(3, 1fr);gap: 12px;margin-bottom: 28px;}
@media(max-width:600px) {
  .cost-results-grid { grid-template-columns: 1fr }
  .emp-input-row { padding: 6px 6px 6px 14px }
  .emp-number-input { font-size: 1.5rem }
  .details-right{top: 14.7rem;}
}
.cost-result-card { border-radius: var(--r2); padding: 18px 16px; text-align: center; transition: all .3s; border: 1.5px solid rgba(255,255,255,.1); background: rgba(255,255,255,.06);}
.cost-result-card
.recommended {background: rgba(0,197,163,.12);border-color: var(--tl-teal);transform: scale(1.03);box-shadow: 0 8px 28px rgba(0,197,163,.2);}
.cost-result-card
.dim-card {opacity: .55;}
.crc-plan {font-size: 10px; font-weight: 600; letter-spacing: .1em;text-transform: uppercase; margin-bottom: 6px;}
.cost-result-card
.recommended 
.crc-plan { color: var(--tl-teal) }
.cost-result-card:not(.recommended) 
.crc-plan { color: rgba(255,255,255,.4) }
.crc-price {font-family: var(--font-head);font-size: 1.65rem; font-weight: 700; color: #fff;line-height: 1; margin-bottom: 4px;transition: all .3s;}
.cost-result-card
.recommended
.crc-price { color: var(--tl-teal) }
.crc-period { font-size: 12px; color: rgba(255,255,255) }
.crc-per-emp { font-size: 11px; color: rgba(255,255,255); margin-top: 4px }
.crc-badge {display: inline-block; margin-top: 8px;font-size: 10px; font-weight: 700; letter-spacing: .07em;background: var(--tl-teal); color: #fff;padding: 3px 10px; border-radius: 99px;}
.crc-upgrade-note {font-size: 10px; color: rgba(255,255,255,.3);margin-top: 6px; line-height: 1.4;}

.recommended-strip {background: rgba(0,197,163,.1);border: 1.5px solid rgba(0,197,163,.3);border-radius: var(--r2);padding: 16px 20px;display: flex; align-items: center; justify-content: space-between;gap: 16px; flex-wrap: wrap;margin-bottom: 0;transition: all .3s;}
.rec-strip-left {display: flex; align-items: center; gap: 12px;}
.rec-strip-icon {width: 40px; height: 40px; border-radius: 50%;background: var(--tl-teal); display: flex;align-items: center; justify-content: center;font-size: 16px; flex-shrink: 0;}
.rec-strip-text { text-align: left }
.rec-strip-headline {font-size: 14px; font-weight: 700; color: #fff; line-height: 1.2;}
.rec-strip-detail {font-size: 12px; color: rgba(255,255,255,.55); margin-top: 3px;}
.rec-strip-cta {background: var(--tl-teal); color: #fff;font-family: var(--font-body); font-size: 13px; font-weight: 700;border: none; border-radius: var(--r2);padding: 12px 22px; cursor: pointer;transition: all .18s; white-space: nowrap; text-decoration: none;display: inline-block; flex-shrink: 0;}
.rec-strip-cta:hover { background: var(--tl-teal-dark); transform: translateY(-1px) }

.Principles-sec {background-color: #F8F9FA;padding: 80px;}
.leadership-hero-main {text-align: center;position: relative;z-index: 2;}
.leadership-hero-main

.leadership-hero-badge {display: inline-block;padding: 8px 18px;border-radius: 30px;background: rgba(255,255,255,0.10);border: 1px solid rgba(255,255,255,0.15);color: #FF9E2C;font-size: 14px;font-weight: 500;margin-bottom: 25px;}

 .leadership-hero-main 
 .leadership-hero-title {color: #fff;font-family: 'Poppins', sans-serif;font-weight: 700;font-size: 47px;line-height: 68px;letter-spacing: 0;text-align: center;margin: 0;}
 .leadership-hero-main
 .leadership-hero-title span {color: #f9a12b;}
    .leadership-hero-main
    .leadership-hero-subtitle {color: rgba(255,255,255,0.75);font-size: 16px;margin-top: 22px;margin-bottom: 32px;}
    .leadership-hero-main
    .leadership-hero-btns { margin-top: 10px;}
    .leadership-hero-main
    .leadership-hero-btn {display: inline-block;background: #0A3A7C;color: #fff;padding: 14px 28px;border-radius: 40px;font-size: 15px;font-weight: 600;text-decoration: none;transition: 0.3s ease;}
        .leadership-hero-main 
        .leadership-hero-btn:hover {background: #0847aa;color: #fff;text-decoration: none;}
        .leadership-hero-main 
        .leadership-hero-btn i { margin-left: 6px; font-size: 13px;}
    .leadership-hero-main 
    .leadership-hero-mobile-img {display: none;}


@media (max-width: 767px) {
    .leadership-hero-main
    .leadership-hero-title {font-size: 20px;line-height: 1.3;}
    .leadership-hero-main
    .leadership-hero-subtitle {font-size: 14px;line-height: 1.6;padding: 0 10px;}
    .leadership-hero-main
    .leadership-hero-btn {padding: 12px 24px;font-size: 14px;}
    .leadership-hero-main
    .leadership-hero-badge {font-size: 13px;padding: 7px 16px;}
    .leadership-hero-main
    .leadership-hero-mobile-img {display: none;max-width: 220px;margin: 20px auto;}}

.cost-top-title {font-family: 'Poppins', sans-serif;font-weight: 600;font-size: 16px;line-height: 100%;letter-spacing: 0;vertical-align: middle;text-transform: capitalize;color: #FF9E2C;margin-bottom: 12px;text-align: left;}
.cost-main-title {color: #143b7d;font-family: 'Poppins', sans-serif;font-weight: 600;font-size: 40px;line-height: 58px;text-transform: capitalize;margin: 0;text-align: center;}
.commandments-heading {display: flex;justify-content: center;}
.commandments-heading
.col-sm-5 {float: none;}
.cost-main-title { text-align: center;}
 .cost-main-title span {color: #FF9E2C;display: inline; margin-top: 0;}
.cost-description {text-align: inherit;text-wrap: balance;font-family: 'Geist', sans-serif;font-size: 16px;font-weight: 400;line-height: 25.9px;letter-spacing: -0.19px;color: #364969;text-align: left;}
.dis{display: flex;justify-content: flex-end;flex-direction: column;}

@media (max-width: 767px) {
    .commandments-heading {display: block !important;}
    .commandments-heading 
    .col-sm-5,
    .commandments-heading 
    .col-sm-7 {width: 100%;}
    .cost-main-title {text-align: center;}
    .cost-main-title {white-space: nowrap;}
    .cost-description {text-align: left;margin-top: 15px;}
}

.principle-card {
    background: #fff;
    border: 1px solid #e7e8f2;
    border-radius: 14px;
    padding: 34px 34px;
    transition: 0.3s ease;
    margin-top: 30px;
}

    .principle-card:hover {
        transform: translateY(-4px);
    }

    .principle-card .principle-image img {
        width: 42px;
        height: 42px;
        object-fit: contain;
    }

    .principle-card .principle-title {
        font-family: 'Poppins', sans-serif;
        font-weight: 500;
        font-size: 20px;
        line-height: 30px;
        letter-spacing: -0.5px;
        vertical-align: middle;
        color: #1d1952;
        margin-top: 28px;
        margin-bottom: 18px;
        text-align: left;
    }

    .principle-card .principle-text {
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        font-size: 16px;
        line-height: 25.92px;
        letter-spacing: -0.19px;
        vertical-align: middle;
        color: #5d6785;
        margin: 0;
        text-align: left
    }

/* Tablet */

@media (max-width: 991px) {

    .cost-main-title {
        font-size: 42px;
        line-height: 54px;
    }

    .cost-description {
        max-width: 100%;
        margin-top: 25px;
      
    }

    .principle-card {
        padding: 24px 18px;
        min-height: 270px;
    }

    .principle-title {
        font-size: 20px;
        line-height: 28px;
    }
}

/* Mobile */

@media (max-width: 767px) {

    .cost-top-title {
        text-align: center;
        font-size: 12px;
        margin-bottom: 10px;
    }

    .cost-main-title {
        font-size: 20px;
        line-height: 30px;
        text-align: center;
    }

    .cost-description {
        font-size: 13px;
        line-height: 24px;
        text-align: center;
        margin-top: 18px;
        
        margin-bottom: 10px;
    }

    .principle-card {
        padding: 18px 16px;
        margin-top: 18px;
        min-height: auto;
        border-radius: 12px;
    }

    .principle-icon img {
        width: 28px;
        height: 28px;
    }

    .principle-title {
        font-size: 17px;
        line-height: 24px;
        margin-top: 16px;
        margin-bottom: 10px;
    }

    .principle-text {
        font-size: 12px;
        line-height: 22px;
      
    }
}

/* Industries Section*/

.industries-sec {
    padding: 70px 0;
    background: #FEFFFF;
}

    .industries-sec .industries-heading {
        margin-bottom: 45px;
    }

        .industries-sec .industries-heading h2 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-style: normal;
            font-size: 40px;
            line-height: 58px;
            letter-spacing: 0;
            text-align: center;
            color: #1f5aa6;
            margin: 0;
        }

            .industries-sec .industries-heading h2 span {
                color: #f59a23;
            }

    .industries-sec .industries-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

        .industries-sec .industries-row > div {
            padding-left: 10px;
            padding-right: 10px;
            margin-bottom: 20px;
        }

    .industries-sec .industry-card {
        border-radius: 14px;
        text-align: center;
        padding: 20px 20px;
        min-height: 140px;
        border: 1px solid #e6e6e6;
        transition: all 0.3s ease;
    }

        .industries-sec .industry-card img {
            width: 38px;
            height: 38px;
            margin: 0 auto 16px;
            display: block;
        }

        .industries-sec .industry-card h4 {
            font-size: 18px;
            font-weight: 500;
            color: #000000;
            font-size: medium;
            line-height: 1.5;
            margin: 0;
            font-family: poppins;
        }

    /* Card Backgrounds */

    .industries-sec .integrity-card {
        background: #DFE8F6;
    }

    .industries-sec .excellence-card {
        background: #EFEEEE;
    }

    .industries-sec .social-card {
        background: #DEEDEA;
    }

    .industries-sec .freedom-card {
        background: #F2E5D8;
    }

    .industries-sec .sustainability-card {
        background: #F5EED5;
    }

    .industries-sec .respect-card {
        background: #EBDDE7;
    }

    /* Hover */

    .industries-sec .industry-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }

/* Mobile Responsive */

@media (max-width: 767px) {

    .industries-sec {
        padding: 10px 0;
    }

        .industries-sec .industries-heading h2 {
            font-size: 20px;
        }

        .industries-sec .industry-card {
            
            padding: 24px 12px;
        }

            .industries-sec .industry-card h4 {
                font-size: 14px;
            }
}





/*Founders Section*/

.founders-sec {
    padding: 30px 0;
    background: #FCFAF8;
}

    /* 
   HEADINGS
 */

    .founders-sec .founders-heading,
    .founders-sec .leadership-heading {
        margin-bottom: 40px;
    }

    .founders-sec .leadership-heading {
        margin-top: 35px;
    }

        .founders-sec .founders-heading h2,
        .founders-sec .leadership-heading h2 {
            margin: 0;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 40px;
            line-height: 58px;
            letter-spacing: 0;
            text-align: center;
            color: #0F4F93;
        }

            .founders-sec .founders-heading h2 span,
            .founders-sec .leadership-heading h2 span {
                color: #FF9E2C;
            }


    /* 
   FOUNDERS ROW
 */

    .founders-sec .founders-row {
        margin-bottom: 20px;
    }


    /* 
   FOUNDER CARD
 */

    .founders-sec .founder-card {
        background: #ffffff;
        border-radius: 18px;
        padding: 24px;
        display: flex;
        flex-direction: row;
        gap: 24px;
        align-items: flex-start;
        min-height: 500px;
        width: 100%;
        box-shadow: 0 2px 10px rgba(0,0,0,0.03);
        transition: 0.3s ease;
    }

        .founders-sec .founder-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        }


    /* FOUNDER IMAGE */

    .founders-sec .founder-image {
        min-width: 280px;
    }

        .founders-sec .founder-image img {
            width: 100%;
            height: 380px;
            object-fit: cover;
            border-radius: 14px;
        }


        /*  NAME + DESIGNATION */

        .founders-sec .founder-image h4 {
            font-family: 'Poppins', sans-serif;
            font-size: 20px;
            font-weight: 500;
            font:medium;
            color: #1A0B54;
            margin: 10px 0 5px;
        }

    .founders-sec .founder-designation {
        display: inline-block;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 3px;
        color: #F4A100;
       
    }

/* 
   FOUNDERS SECTION
 */

.founders-sec {
    background: #FCFAF8;
    padding: 80px 0;
}

    /* Headings */

    .founders-sec .founders-heading,
    .founders-sec .leadership-heading {
        margin-bottom: 20px;
    }

    .founders-sec .leadership-heading {
        margin-top: 20px;
    }

        .founders-sec .founders-heading h2,
        .founders-sec .leadership-heading h2 {
            margin: 0;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 40px;
            line-height: 58px;
            text-align: center;
            color: #0F4F93;
        }

            .founders-sec .founders-heading h2 span,
            .founders-sec .leadership-heading h2 span {
                color: #FF9E2C;
            }

    /* Founder Cards */

    .founders-sec .founders-row {
        margin-left: -15px;
        margin-right: -15px;
    }

        .founders-sec .founders-row > div {
            margin-bottom: 30px;
        }

    .founders-sec .founder-card {
        background: #fff;
        border-radius: 18px;
        padding: 25px;
        min-height: 500px;
        display: flex;
        gap: 25px;
        box-shadow: 0 2px 10px rgba(0,0,0,.03);
    }

    .founders-sec .founder-image-box {
        width: 265px;
        flex-shrink: 0;
    }

        .founders-sec .founder-image-box img {
            width: 100%;
            height: 380px;
            object-fit: cover;
            border-radius: 14px;
        }

    .founders-sec .founder-info {
        margin-top: 25px;
       
    }

        .founders-sec .founder-info h4 {
          
            font-family: 'Poppins', sans-serif;
            font-size: 20px;
            font-weight: 600;
            text-align: left;
            color: #1A0B54;
        }

        .founders-sec .founder-info span {
            display: block;
            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 3px;
            color: #F4A100;
            text-align: left;
           
        }

    .founders-sec .founder-content {
        flex: 1;
    }

        .founders-sec .founder-content p {
            margin: 0;
            font-family: 'Poppins', sans-serif;
            font-size: 18px;
            line-height: 34px;
            color: #1A0B54;
        }

    /* Leadership */
/*.leadership-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.leadership-row .col-sm-4 {
    width: 31%;
   
}

@media (max-width: 767px) {
    .leadership-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

        .leadership-row .col-sm-4 {
            width: calc(50% - 8px) !important;
            padding: 0;
        }

            .leadership-row .col-sm-4:last-child {
                width: 50% !important;
            }
}*/
.leadership-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

    .leadership-row .col-sm-4 {
        width: 31%;
    }

@media (max-width: 767px) {
    .leadership-row {
        gap: 15px;
    }

        .leadership-row .col-sm-4 {
            width: 70% !important; /* card width on mobile */
            padding: 0;
        }

            .leadership-row .col-sm-4:last-child {
                width: 70% !important;
            }
}

    .founders-sec .leadership-row {
        max-width: 1000px;
        margin: 0 auto;
    }

    .founders-sec .leader-card {
        background: #fff;
        border: 1px solid #ECECEC;
        border-radius: 15px;
        padding: 8px;
        overflow: hidden;
        transition: .3s;
/*        margin-bottom: 30px;*/
    }

        .founders-sec .leader-card:hover {
            transform: translateY(-5px);
        }

    .founders-sec .leader-image {
        border-radius: 14px;
        overflow: hidden;
        background: #F3F3F3;
    }

        .founders-sec .leader-image img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

    .founders-sec .leader-content {
        padding: 15px 8px 10px;
    }

        .founders-sec .leader-content h4 {
            margin: 0 0 8px;
            font-family: 'Poppins', sans-serif;
            font-size: 16px;
            font-weight: 600;
            color: #1A0B54;
        }

        .founders-sec .leader-content span {
            display: block;
            font-family: 'Poppins', sans-serif;
            font-size: 9px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #F4A100;
        }

/* Responsive */

@media (max-width:991px) {

    .founders-sec .founder-card {
        display: block;
        min-height: auto;
    }

    .founders-sec .founder-image-box {
        width: 100%;
    }

        .founders-sec .founder-image-box img {
            height: auto;
        }

    .founders-sec .founder-info {
        padding-left: 0;
        margin-bottom: 25px;
    }
}

@media (max-width:767px) {

    .founders-sec {
        padding: 50px 0;
    }

        .founders-sec .founders-heading,
        .founders-sec .leadership-heading {
            margin-bottom: 40px;
        }

        .founders-sec .leadership-heading {
            margin-top: 40px;
        }

            .founders-sec .founders-heading h2,
            .founders-sec .leadership-heading h2 {
                font-size: 30px;
                line-height: 42px;
                text-align: left;
            }

        .founders-sec .founder-content p {
            font-size: 16px;
            line-height: 30px;
            margin-top: 20px !important;
        }

        .founders-sec .leader-image img {
            height: 220px;
        }
}
    /* 
   CONTENT
 */

    .founders-sec .founder-content {
        flex: 1;
    }

        .founders-sec .founder-content p {
            font-family: 'Poppins', sans-serif;
            font-size: 20px;
            line-height: 34px;
            color: #1A0B54;
            margin: 0;
            text-align: left;
        }


    /* 
   LEADERSHIP ROW
 */

    .founders-sec .leadership-row {
        margin-top: 10px;
    }
.leadership-row > div {
    padding-left: 8px;
    padding-right: 8px;
}


    /* 
   LEADER CARD
 */

    .founders-sec .leader-card {
        background: #fff;
        border-radius: 14px;
        padding: 14px;
        border: 1px solid #ececec;
        width: 280px;
        transition: all 0.3s ease;
        height: 387px;
    }

        .founders-sec .leader-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        }


    /* 
   LEADER IMAGE
 */

    .founders-sec .leader-image img {
        width: 100%;
        max-width: 352px;
        object-fit: cover;
        border-radius: 10px;
        background: #d9d9d9;
        display: block;
        margin: 0 auto;
    }


    /* 
   LEADER CONTENT
*/

    .founders-sec .leader-content {
        padding-top: 15px;
    }

        .founders-sec .leader-content span {
            display: block;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 2px;
            color: #FF9E2C;
/*            margin-bottom: 8px;*/
            font-family: 'Poppins', sans-serif;
        }

        .founders-sec .leader-content h4 {
/*            margin: 0;*/
            font-size: 20px;
            font-weight: 500;
            color: #1A0B54;
            font-family: 'Poppins', sans-serif;
        }


/* 
   TABLET RESPONSIVE
 */

@media (max-width: 991px) {

    .founders-sec {
        padding: 55px 0;
    }

        .founders-sec .founders-heading h2,
        .founders-sec .leadership-heading h2 {
            font-size: 34px;
            line-height: 48px;
        }

        .founders-sec .founder-card {
            flex-direction: column;
            min-height: auto;
            padding: 18px;
            gap: 18px;
        }

        .founders-sec .founder-image {
            width: 100%;
            min-width: 100%;
        }

            .founders-sec .founder-image img {
                width: 100%;
                height: 320px;
            }

        .founders-sec .founder-content p {
            font-size: 14px;
            line-height: 28px;
        }

        .founders-sec .founder-image h4 {
            font-size: 22px;
        }

        .founders-sec .leader-card {
            width: 100%;
        }

        .founders-sec .leader-image img {
            width: 100%;
            max-width: 100%;
            height: auto;
        }

        .founders-sec .leader-content h4 {
            font-size: 18px;
        }
}


/*
   MOBILE RESPONSIVE
*/

@media (max-width: 767px) {

    .founders-sec {
        padding: 30px 0;
    }

        .founders-sec .founders-heading,
        .founders-sec .leadership-heading {
            margin-bottom: 25px;
        }

            .founders-sec .founders-heading h2,
            .founders-sec .leadership-heading h2 {
                font-size: 20px;
                line-height: 34px;
                text-align: center;
            }

        .founders-sec .founders-row {
            margin-bottom: 30px;
        }

        .founders-sec .founder-card {
            flex-direction: column;
            padding: 16px;
            gap: 14px;
            border-radius: 14px;
            min-height: auto;
            margin-top: 15px;
        }

        .founders-sec .founder-image {
            width: 100%;
            min-width: 100%;
        }

            .founders-sec .founder-image img {
                width: 100%;
                height: 260px;
                border-radius: 12px;
            }

        .founders-sec .founder-designation {
            font-size: 10px;
            letter-spacing: 2px;
            margin-top: 12px;
        }

        .founders-sec .founder-image h4 {
            font-size: 20px;
            line-height: 28px;
        }

        .founders-sec .founder-content p {
            font-size: 14px;
            line-height: 24px;
        }

        .founders-sec .leader-card {
            width: 100%;
            padding: 12px;
            border-radius: 12px;
            margin-bottom: 20px;
            text-align: center;
            height: auto;
        }

        .founders-sec .leader-image img {
            width: 100%;
            max-width: 280px;
            height: auto;
            border-radius: 10px;
        }

        .founders-sec .leader-content {
            padding-top: 15px;
        }

            .founders-sec .leader-content span {
                font-size: 10px;
                letter-spacing: 1px;
                margin-bottom: 6px;
            }

            .founders-sec .leader-content h4 {
                font-size: 18px;
                line-height: 26px;
                margin-bottom: 8px;
            }

            .founders-sec .leader-content p {
                font-size: 14px;
                line-height: 22px;
            }
}
/* 
   HOW WE WORK SECTION
 */

.Howwework-sec {
    padding: 50px 0;
/*    background: #FFFFFF;*/
}

    /* 
   HEADING
 */

    .Howwework-sec .Howwework-heading {
        margin-bottom: 50px;
      
    }

        .Howwework-sec .Howwework-heading h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 40px;
            font-weight: 600;
            line-height: 58px;
            color: #0F4F93;
/*            margin-bottom: 15px;*/
        }

            .Howwework-sec .Howwework-heading h2 span {
                font-family: 'Poppins', sans-serif;
                font-size: 40px;
                font-weight: 600;
                line-height: 58px;
                color: #FF9E2C;
            }

        .Howwework-sec .Howwework-heading p {
            font-family: 'Poppins', sans-serif;
            font-size: 16px;
            line-height: 25px;
            color: #364969;
            max-width: 620px;
            margin: 0 auto;
        }

  
    .Howwework-sec .Howwework-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 65px;
        position: relative;
    }

@media (max-width: 768px) {
    .Howwework-sec .Howwework-row{
        gap: 10px
    }
}


@media (max-width: 767px) {

    .Howwework-sec .Howwework-row {
        display: flex;
        flex-wrap: wrap;
        gap: 0 !important;
        margin-left: -5px;
        margin-right: -5px;
    }

        .Howwework-sec .Howwework-row > div {
            width: 50%;
            padding: 0 5px;
        }

    .Howwework-sec .Howwework-card {
        margin-bottom: 10px;
        height: auto;
    }
}

.hero-title-labour {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.hr-samvaad-img {
    height: 50px;
    width: auto;
    display: block;
}

/* Mobile */
@media (max-width: 576px) {
    .hero-title-labour {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .hr-samvaad-img {
        height: 35px;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .hr-samvaad-img {
        height: 40px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .hr-samvaad-img {
        height: 30px;
    }
}
    /* 
   CARD
 */

.Howwework-sec .Howwework-card {
    border-radius: 14px;
    padding: 18px 16px;
    height: 182px;
    transition: 0.3s ease;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

        .Howwework-sec .Howwework-card:hover {
            transform: translateY(-5px);
        }



    /* Last card line remove */
    .Howwework-row .col-lg-2:last-child .Howwework-card::after {
        display: none;
    }



    .Howwework-sec .Howwework-top {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-bottom: 12px;
        text-align: center;
    }

    .Howwework-sec .Howwework-icon {
        margin-bottom: 0;
    }

        .Howwework-sec .Howwework-icon img {
            width: 26px;
            height: 26px;
            object-fit: contain;
        }

    .Howwework-sec .Howwework-card h4 {
        margin: 0;
        color: #1A0B54;
        font-size: 20px;
        font-family: 'Poppins', sans-serif;
        line-height: 30px;
        text-align: center;
    }

    /* Paragraph */
    .Howwework-sec .Howwework-card p {
        font-family: 'Poppins', sans-serif;
        font-size: 13px;
        line-height: 21px;
        color: #000000;
        margin: 0;
        text-align: center;
    }

    /* 
   LAPTOP
 */
    @media (max-width: 1199px) {
        .Howwework-sec .Howwework-heading h2, .Howwework-sec .Howwework-heading h2 span {
            font-size: 34px;
            line-height: 48px;
        }

        .Howwework-sec .Howwework-card {
            height: 190px;
            padding: 16px 14px;
        }

            .Howwework-sec .Howwework-card h4 {
                font-size: 15px;
            }

            .Howwework-sec .Howwework-card p {
                font-size: 12px;
                line-height: 20px;
            }
    }

    /* 
   TABLET
 */

    @media (max-width: 991px) {

        .Howwework-sec {
            padding: 60px 0;
        }

            .Howwework-sec .Howwework-heading {
                margin-bottom: 40px;
            }

                .Howwework-sec .Howwework-heading h2,
                .Howwework-sec .Howwework-heading h2 span {
                    font-size: 30px;
                    line-height: 42px;
                }

                .Howwework-sec .Howwework-heading p {
                    font-size: 15px;
                    line-height: 24px;
                }

            .Howwework-sec .Howwework-card {
                height: auto;
                min-height: 182px;
            }
    }

    .request-demo-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 8px 16px;
        font: normal 400 16px/24px 'Poppins', sans-serif;
        background: #0A3A7C;
        color: #fff !important;
        border-radius: 50px;
        border: none;
        transition: all 0.3s ease;
        text-decoration: none;
    }

        .request-demo-btn img {
            width: 28px;
            height: 28px;
            object-fit: contain;
        }

        .request-demo-btn:hover {
            background: #082d61;
            color: #fff !important;
        }

    /* Responsive */
    @media (max-width: 767px) {
        .request-demo-btn {
            padding: 10px 24px;
            font-size: 14px;
            line-height: 20px;
            gap: 8px;
            width: 100%;
            max-width: 260px;
        }

            .request-demo-btn img {
                width: 16px;
                height: 16px;
            }
    }

    /* =========================
   MOBILE
========================= */

    @media (max-width: 767px) {

        .Howwework-sec {
            padding: 10px 0;
        }

            .Howwework-sec .Howwework-heading {
                margin-bottom: 30px;
            }

                .Howwework-sec .Howwework-heading h2,
                .Howwework-sec .Howwework-heading h2 span {
                    font-size: 20px;
                    line-height: 36px;
                }

                .Howwework-sec .Howwework-heading p {
                    font-size: 14px;
                    line-height: 22px;
                    padding: 0 15px;
                }

            .Howwework-sec .Howwework-card {
                height: auto;

                text-align: center;
                padding: 20px 16px;
            }

            .Howwework-sec .Howwework-icon {
                text-align: center;
                margin-bottom: 10px;
            }

                .Howwework-sec .Howwework-icon img {
                    width: 24px;
                    height: 24px;
                }

            .Howwework-sec .Howwework-card h4 {
                font-size: 15px;
                line-height: 22px;
                margin-bottom: 8px;
            }

            .Howwework-sec .Howwework-card p {
                font-size: 13px;
                line-height: 20px;
            }
    }





    .Howwework-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 50px;
        position: relative;
    }

        .Howwework-row > div {
            position: relative;
        }

            /* Curve line between cards */
            .Howwework-row > div:not(:last-child)::after {
                content: "";
                position: absolute;
                top: 42%;
                right: -75px;
                width: 90px;
                height: 55px;
                border-top: 3px dashed #838BB5;
                border-radius: 50%;
                transform: translateY(-50%);
            }

    /* Hide line on tablet/mobile */
    @media (max-width: 991px) {
        .Howwework-row {
            gap: 10px;
        }

            .Howwework-row > div::after {
                display: none;
            }
    }


    .team-row {
        row-gap: 30px;
        justify-content: center;
    }

    /* CARD */
    .team-card {
        width: 100%;
        max-width: 400px;
        height: 412px;
        padding: 24px;
        border-radius: 20px;
        background: #fff;
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin: auto;
        transition: 0.3s ease;
    }

        .team-card:hover {
            transform: translateY(-5px);
        }

    /* IMAGE */
    .team-image {
        width: 100%;
        height: 280px;
        border-radius: 14px;
        overflow: hidden;
    }

        .team-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 14px;
            display: block;
        }

    /* CONTENT */
    .team-content {
        padding-top: 8px;
    }

        /* NAME */
        .team-content h4 {
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            font-size: 20px;
            line-height: 30px;
            letter-spacing: -0.5px;
            margin: 0 0 6px;
            color: #111;
        }

        /* DESIGNATION */
        .team-content span {
            display: block;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 14.4px;
            line-height: 23.9px;
            letter-spacing: 2.4px;
            text-transform: uppercase;
            color: #7A7A7A;
        }

    /* RESPONSIVE */
    @media(max-width:991px) {

        .team-card {
            max-width: 100%;
            height: auto;
        }

        .team-image {
            height: 240px;
        }
    }

    @media(max-width:576px) {

        .team-row {
            row-gap: 20px;
        }

        .team-card {
            padding: 18px;
            border-radius: 16px;
        }

        .team-image {
            height: 220px;
        }

        .team-content h4 {
            font-size: 18px;
            line-height: 28px;
        }

        .team-content span {
            font-size: 13px;
            line-height: 22px;
            letter-spacing: 2px;
        }
    }


.cta-hrss {
    margin-top: 70px;
}

.coming-soon-btn {
    width: 366.76px;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}



.Event-section {
    padding: 60px 0;
/*    background: #f5f5f5;*/
}

.event-heading {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
}

.event-card {
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    margin-bottom: 0;
}

    .event-card img {
        width: 100%;
        height: 100%;
        display: block;
        border-radius: 12px;
        object-fit: cover;
    }

    /* Style 2 */
    .event-card.style-2 {
        position: relative;
        padding: 0;
        margin: 0;
        border: 0;
        min-height: auto;
        background-color: transparent;
    }

        .event-card.style-2 img.image {
            position: relative;
        }

        .event-card.style-2 .event-title {
            position: absolute;
            color: #fff;
            padding: 16px 16px 16px 36px;
            z-index: 1;
            bottom: 0;
            left: 0;
        }

/* Laptop */
@media (max-width: 1199px) {
    .event-card.style-2 .event-title {
        padding: 15px 15px 15px 25px;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .event-card {
        margin-bottom: 20px;
    }

        .event-card.style-2 .event-title {
            padding: 12px 12px 12px 20px;
        }
}

/* Mobile */
@media (max-width: 767px) {
    .event-card {
        margin-bottom: 16px; /* gap between cards */
    }

        .event-card img {
            min-height: 220px;
        }

        .event-card.style-2 .event-title {
            padding: 10px 10px 10px 16px;
            font-size: 16px;
            line-height: 22px;
        }
}

/* Small Mobile */
@media (max-width: 480px) {
    .event-card {
        margin-bottom: 12px;
    }

        .event-card img {
            min-height: 180px;
            margin-top: 20px
        }

        .event-card.style-2 .event-title {
            padding: 8px 8px 8px 12px;
            font-size: 14px;
            line-height: 20px;
        }
}

#sectiocolor {
    background: #F8F9FA;
}


.event-heading-past {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 30px;
    letter-spacing: 0;
    vertical-align: middle;
    color: #333333;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .event-heading-past {
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 20px;
    }
}


/*-------------- Industry css -----------------------*/
/*-----1. Enterprise---------*/
/* =========================
   Enterprise Hero Sectionx
========================= */
/* ===== ENTERPRISE HERO SECTION ===== */

/* ==========================
   MANUFACTURING HERO SECTION
========================== */



.manufacturing-hero {position: relative;width: 100%;height: 100vh;overflow: hidden;background-size: cover;background-position: center;background-repeat: no-repeat;padding: 120px 0;display: flex;align-items: center;}
/* LEFT CONTENT */
.hero-content {position: relative;}
/* TAG */
.hero-tag {display: inline-flex;align-items: center;gap: 10px;padding: 10px 20px;border: 1px solid rgba(255,255,255,.2);border-radius: 50px;color: #ff9d2f;font-family: 'Poppins', sans-serif;font-size: 18px;font-weight: 500;margin-bottom: 24px;background: rgba(255,255,255,.03);}
.hero-tag .dot {width: 8px;height: 8px;border-radius: 50%;background: #ff9d2f;}
/* HEADING */
.hero-content h1 {font-family: 'Poppins', sans-serif;font-size: 47px;line-height: 68px;font-weight: 700;font-weight: bold;color: #ffffff;margin: 0 0 24px;}
.hero-content h1 span {color: #ff9d2f;}
/* PARAGRAPH */
.hero-content p {max-width: 760px;font-family: 'Poppins', sans-serif;font-size: 18px;line-height: 30px;font-weight: 400;color: rgba(255,255,255,.75);margin-bottom: 32px;}
/* BUTTONS */
.hero-buttons {display: flex;gap: 15px; }
.hero-btn-primary {background: #0d5eff;color: #fff;padding: 15px 32px;border-radius: 50px;font-family: 'Poppins', sans-serif;font-size: 16px;font-weight: 500;}
.hero-btn-primary:hover {color: #fff;background: #084fd8;}
.hero-btn-secondary {background: #fff;color: #111;padding: 15px 32px;border-radius: 50px;font-family: 'Poppins', sans-serif;font-size: 16px;font-weight: 500;}
.hero-btn-secondary:hover {background: #f5f5f5;color: #111;}
/* RIGHT IMAGE */
.hero-image {position: absolute;right: 0;top: 90px;width: 1058px;height: 736px;overflow: hidden;}
.hero-image img {width: 1058px;height: 736px;object-fit: cover;}
/* STATS CARD */
.hero-stats {position: relative;width: 90%;max-width: 1370px;padding: 18px 20px;border-radius: 24px;border: 1px solid rgba(62, 105, 163, 0.73);background: #3E69A342;backdrop-filter: blur(6px);z-index: 5;}
.stat-item {text-align: center;border-right: 1px solid rgba(255,255,255,.15);}
.stat-item.border-none {border-right: none;}
.stat-item h3 {margin: 0 0 10px;color: #fff;font-size: 36px;font-weight: 700;font-family: 'Poppins', sans-serif;}
stat-item p {margin: 0;color: rgba(255,255,255,.75);font-size: 16px;font-family: 'Poppins', sans-serif;
 /* RESPONSIVE */
 @media (max-width: 1199px) {
 .manufacturing-hero {height: auto;padding: 100px 0 250px;}
 .hero-content {width: 100%;height: auto;margin: 0;}
 .hero-image {position: relative;width: 100%;height: auto;top: 50px;}
 .hero-stats {position: relative;bottom: auto;margin-top: 80px;}
 .stat-item {margin-bottom: 20px;border-right: none;}}}
/*--- new  correct ---*/
.hero-stats {display: flex;align-items: center;justify-content: center;gap: 0;border-radius: 24px;border: 1px solid rgba(62, 105, 163, 0.73);background: rgba(62, 105, 163, 0.26);backdrop-filter: blur(17.700000762939453px);padding: 20px 36px;flex-wrap: wrap;margin-top: 30px;width: 100%;}
.hero-stat-item {display: flex;align-items: center;gap: 12px;padding: 8px 32px;flex: 1;min-width: 160px;justify-content: center;}
.hero-stat-icon {font-size: 28px;color: #E8A83E;flex-shrink: 0;}
.hero-stat-text {display: flex;flex-direction: column;gap: 4px;}
.hero-stat-text {display: flex;flex-direction: column;align-items: center;text-align: center;}
.hero-stat-val {font-size: 25px;font-weight: 600;color: #FFFFFF;line-height: 100%;letter-spacing: 0%;font-family: Poppins;white-space: nowrap;}
.hero-stat-label {font-size: 17px;color: #FFFFFF;white-space: nowrap;line-height: 150%;letter-spacing: 0%;font-family: Poppins;}
.hero-stats {display: flex;align-items: center;}
.hero-stat-item {position: relative;padding-right: 30px;margin-right: -8px;}
.hero-stat-item:after {content: "";position: absolute;top: 50%;right: 0;transform: translateY(-50%);width: 1px;height: 48px;background-color: rgba(255, 255, 255, 0.25);}
.hero-stat-item:last-child {padding-right: 0;margin-right: 0;}
.hero-stat-item:last-child:after {display: none;}
@media (max-width: 640px) {
.hero-stats {flex-direction: column;gap: 20px;padding: 20px;}
.hero-stat-divider {width: 80%;height: 1px;}
.hero-stat-item {padding: 4px 0;justify-content: flex-start;width: 100%;}}
.hero-stat-val {display: flex;justify-content: center;gap: 10px; width: 100%;}
.stat-icon {width: 24px;height: 24px;object-fit: contain;}
* {box-sizing: border-box;margin: 0;padding: 0;}
body {font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;background: #fff;}
/*-------------- client logo ---------------------*/
.trusted-section {width: 100%;max-width: 1920px;margin: 0 auto;padding: 50px;background: linear-gradient(180deg, #FFF 0%, #F2F8FF 100%);}
.trusted-section 
.section-title {text-align: center;font-size: 25px !important;font-weight: 400;color: #0D1333 !important;letter-spacing: 0px;line-height: 100%;}
.logo-grid {display: flex;flex-wrap: wrap;gap: 24px;}
.logo-box {width: calc((100% - 120px) / 6); height: 70px;
    padding: 15px;
    border-radius: 14px;
    background: #FFF;
    box-shadow: 20px 20px 30.6px 0 rgba(24, 72, 212, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
}
/*
    .logo-box:hover {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10), 0 0 0 1px rgba(0,0,0,0.06);
        transform: translateY(-1px);
    }*/

    .logo-box img {
        max-width: 100%;
        max-height: 50px;
        object-fit: contain;
    }

/* Text-based logos for demo */
.logo-text {
    font-size: 22px;
    font-weight: 800;
    color: #111;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.logo-Gits .logo-text {
    color: #1a1a1a;
    font-size: 20px;
}

.logo-Gits .star {
    color: #e63946;
    font-size: 26px;
    line-height: 1;
}

.logo-pigeon .logo-text {
    font-size: 19px;
    letter-spacing: 0.5px;
    color: #111;
}

.logo-bsh .logo-text {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
}

.logo-mufg {
    gap: 8px;
}

    .logo-mufg .mufg-icon {
        width: 22px;
        height: 22px;
        background: #c00;
        border-radius: 50%;
        flex-shrink: 0;
    }

    .logo-mufg .logo-text {
        font-size: 20px;
        font-weight: 700;
        color: #111;
    }

.logo-shriram {
    flex-direction: column;
    gap: 2px;
}

    .logo-shriram .shriram-top {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .logo-shriram .shriram-icon {
        width: 26px;
        height: 26px;
        background: #f5a623;
        border-radius: 4px;
        flex-shrink: 0;
    }

    .logo-shriram .logo-text {
        font-size: 15px;
        font-weight: 800;
        color: #1a1a1a;
    }

    .logo-shriram .shriram-sub {
        font-size: 9px;
        color: #555;
        text-align: center;
    }

    .logo-shriram .shriram-tagline {
        font-size: 8px;
        color: #777;
    }

.logo-birlanu .logo-text {
    font-size: 22px;
    font-weight: 700;
    color: #111;
}

    .logo-birlanu .logo-text span {
        font-weight: 300;
    }

.logo-lt {
    flex-direction: column;
    gap: 4px;
}

    .logo-lt .lt-icon {
        width: 28px;
        height: 28px;
        border: 2px solid #0057a8;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        font-weight: 700;
        color: #0057a8;
    }

    .logo-lt .logo-text {
        font-size: 12px;
        font-weight: 700;
        color: #0057a8;
        letter-spacing: 0.5px;
    }

.logo-milkway .milkway-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid #888;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.logo-milkway .milkway-n {
    font-size: 20px;
    font-weight: 700;
    color: #444;
}

.logo-milkway .milkway-sub {
    font-size: 7px;
    color: #777;
    text-align: center;
}

.logo-rkmarble {
    flex-direction: column;
    gap: 2px;
}

    .logo-rkmarble .rk-icon {
        width: 36px;
        height: 32px;
        position: relative;
    }

        .logo-rkmarble .rk-icon svg {
            width: 100%;
            height: 100%;
        }

    .logo-rkmarble .logo-text {
        font-size: 13px;
        font-weight: 700;
        color: #e63030;
        letter-spacing: 1px;
    }

.logo-ceat .logo-text {
    font-size: 32px;
    font-weight: 900;
    color: #111;
    letter-spacing: -1px;
}

.logo-jpm .jpm-circle {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    border: 1.5px solid #999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-jpm .logo-text {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.logo-chowgule {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

    .logo-chowgule .chow-top {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .logo-chowgule .chow-icon {
        width: 20px;
        height: 20px;
        background: #c00;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .logo-chowgule .chow-icon svg {
            width: 12px;
            height: 12px;
        }

    .logo-chowgule .chow-name {
        font-size: 8px;
        font-weight: 700;
        color: #111;
        letter-spacing: 0.3px;
        text-transform: uppercase;
    }

    .logo-chowgule .chow-sub {
        font-size: 9px;
        color: #333;
        font-weight: 600;
    }

/*@media (max-width: 1600px) {

    .manufacturing-hero h1 {
        font-size: 35px !important;
        margin-bottom: 24px !important;
    }
    .manufacturing-hero p {
        font-size: 16px;
        margin-bottom: 24px;
    }
    .hero-stats {
        margin-top: 30px !important;
margin-bottom: 50px !important;

    }
    .hero-tag {
        margin-top: 60px !important;
    }
}*/
@media (max-width: 1600px) {

    .hero-tag {
        margin-top: 60px !important;
        margin-bottom: 24px !important;
    }

    .manufacturing-hero h1 {
        font-size: 35px !important;
        margin-bottom: 24px !important;
    }

    .manufacturing-hero p {
        font-size: 16px;
        margin-bottom: 24px !important;
    }

    .hero-stats {
        margin-top: 24px !important;
        margin-bottom: 24px !important;
    }
}


@media (max-width: 1400px) {
    .manufacturing-hero h1 {
        font-size: 35px;
    }
        .trusted-section {
        padding: 80px 120px 100px 120px;
    }
}

@media (max-width: 1100px) {
    .trusted-section {
        padding: 60px 60px 80px 60px;
    }

    .logo-box {
        width: calc(33.33% - 16px);
    }
}

@media (max-width: 768px) {
    .trusted-section {
        padding: 40px 24px 60px 24px;
    }

    .logo-box {
        width: calc(50% - 12px);
        height: 80px;
    }
}

@media (max-width: 480px) {
    .logo-box {
        width: 100%;
    }
}

@media (max-width: 1199px) {
    .logo-box {
        width: calc((100% - 72px) / 4); /* 4 columns */
    }
}

@media (max-width: 767px) {
    .connectWithDataTesti .owl-dots:after{
        display: none;
    }
    .logo-box {
        width: calc((100% - 24px) / 2); /* 2 columns */
    }
}

@media (max-width: 480px) {
    .logo-box {
        width: 100%; /* 1 column */
    }
}

/*---------- mnaufacturing */
.manufacturing-challenges {
    padding: 60px 0;
    background: linear-gradient(180deg, #FFF 0%, #F2F8FF 100%);
}

.section-header {
    margin-bottom: 50px;
}

.section-label {
    display: block;
    color: #FF9E2C;
    font-family: Poppins, sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    text-transform: capitalize;
    margin-bottom: 15px;
}
.review-company
.section-title-manu {
    margin: 0;
    color: #15498B;
    font-style: Semibold;
    font-family: Poppins, sans-serif;
    font-weight: 600;
    font-size: 40px;
    line-height: 58px;
    text-align: center;
}

    .section-title-manu span {
        color: #FF9E2C;
    }

    .challenge-row {
/*        margin-top: 50px;*/
    }

.challenge-card {
    background: #fff;
    border-radius: 24px;
    border: 1px solid transparent;
    padding: 30px;
    min-height: 300px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

    .challenge-card:hover {
        border-color:#EBECF7;
        background: #FEFEFF;
        box-shadow: 0 7px 34px 0 rgba(0, 0, 0, 0.10);
    }

.card-icon {
    width: 60px;
    height: 60px;
    display: block;
    margin-bottom: 20px;
    object-fit: contain;
}

.challenge-card h3 {
    margin: 0 0 15px;
    color: #2C2C2C;
    font-family: Poppins, sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
}

.challenge-card p {
    margin-bottom: 25px;
    color: #666;
    font-family: Poppins, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
    overflow: hidden;
/*    text-align: justify;*/
}

.card-link {
    color: #FF9E2C;
    text-decoration: none;
    font-family: Poppins, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    text-transform: capitalize;
    display: inline-flex;
    align-items: center;
}

    .card-link:hover {
        color: #FF9E2C;
        text-decoration: none;
    }

.arrow {
    font-size: 22px;
    margin-left: 4px;
    display: inline-block;
}


/*--------- Client Review Css ----------------*/

.our-client-section .client-card{min-height: 300px;}
.our-client-section .trustedclients.clientstestimonials .client-card {
    margin: 0 auto 80px !important
}
.connectWithDataTesti .owl-dots:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 138px;
    border: 1px solid #fff;
    z-index: -1;
    display: inline-block;
    transform: translateX(-50%);
    width: 40%;
}
.clientstestimonials.trustedclients .owl-nav{max-width: 240px;bottom: -20px;top: inherit}
.clientstestimonials button.owl-prev {
    left: 50px;
    background: #fff !important;
}

.clientstestimonials button.owl-next {
    right: 80px;
    background: #fff !important;
}
.client-review-section {
    position: relative;
    width: 100%;
/*    min-height: 715px;*/
    padding: 60px 0 90px;
    background: url('../images/herobgenterprise.jpg') center center no-repeat;
    background-size: cover;
}


/* Heading */
.section-label {
    display: block;
    margin-bottom: 15px;
    color: #FF9E2C;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 100%;
}

.section-title {
    color: #FFFFFF !important;
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 58px;
    margin: 0 0 50px;
    white-space: nowrap;
}

    .section-title span {
        color: #FF9E2C;
/*        display: block;*/
    }

/* Review Box */
.review-card {
    position: relative;
    background: #fff;
    border: 1px solid #EAEAEA;
    border-radius: 24px;
    padding: 30px 40px;
    margin-bottom: 25px;
}

    /* Left Pointer */
    .review-card:before {
        content: "";
        position: absolute;
        left: 20px;
        bottom: -18px;
        width: 0;
        height: 0;
        border-top: 20px solid #fff;
        border-right: 20px solid transparent;
    }

.review-logo {
    max-height: 90px;
    margin: 62px auto;
}

.review-text {
    color: #2C2C2C;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: -0.5px;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.review-company {
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 5px;
    color: #2C2C2C;
    line-height: 30px;
    letter-spacing: -0.5;
    font-family: 'Poppins', sans-serif;
}

.review-author {
    color: #FF9E2C;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

/* Review Text */
.review-view {
    color: #fff;
    font-size: 13px;
    margin-bottom: 20px;
}

/* Logo Tabs */
.logo-tabs {
    font-size: 0;
}

.logo-item {
    width: 180px;
    height: 60px;
    background: #fff;
    border: 2px solid transparent;
    border-radius: 14px;
    padding: 10px 15px;
    display: inline-block;
    vertical-align: middle;
    margin: 0 8px;
    cursor: pointer;
}

    .logo-item.active {
        border-color: #FF9E2C;
    }

    .logo-item img {
        max-width: 100%;
        max-height: 35px;
        margin: 0 auto;
        display: block;
    }

/* Dots */
.slider-dots {
    margin-top: 20px;
}

    .slider-dots span {
        width: 8px;
        height: 8px;
        background: #fff;
        border-radius: 50%;
        display: inline-block;
        margin: 0 4px;
        opacity: .5;
    }

        .slider-dots span.active {
            width: 18px;
            border-radius: 10px;
            background: #FF9E2C;
            opacity: 1;
        }

.logo-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.logo-track {
    display: flex;
    gap: 18px;
    width: max-content;
    animation: scrollLogos 18s linear infinite;
}

.logo-slider:hover .logo-track {
    animation-play-state: paused;
}

.logo-item {
    width: 130px;
    height: 60px;
    background: #fff;
    border-radius: 10px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .logo-item img {
        max-width: 80%;
        max-height: 40px;
    }

@keyframes scrollLogos {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}
.slider-dots {
    margin-top: 20px;
}

    .slider-dots span {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #fff;
        opacity: .5;
        display: inline-block;
        margin: 0 4px;
        transition: .3s;
    }

        .slider-dots span.active {
            width: 28px;
            border-radius: 20px;
            background: #f9a826;
            opacity: 1;
        }

        /*--------------leading construction css------------------*/
.welcome-section {
    padding: 60px 0;
    background: #FCFAF8;
}

.section-header {
/*    max-width: 900px;*/
/*    margin: 0 !important;*/
}

.sub-heading {
    display: block;
    margin-bottom: 15px;
    color: #F59E0B;
    font-family: Poppins, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 100%;
    text-transform: capitalize;
}

.main-heading {
    margin: 0;
    font-family: Poppins, sans-serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 58px;
    color: #0D3B78;
}

    .main-heading span {
        color: #F59E0B;
    }



.no-margin {
    margin-left: 0;
    margin-right: 0;
}

.feature-card {
    height: auto;
    min-height: 340px;
    padding: 30px;
    border: 1px solid #E5E7EB;
    background: #fff;
    border-radius: 20px;
    margin-bottom: 20px;
}

.row:last-child .feature-card {
    border-bottom: none;
}

.row .feature-col:last-child .feature-card {
    border-right: none;
}

.feature-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin: -21px 0 15px;
    font-family: Poppins, sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
    color: #1F2937;
}

.feature-card p {
    margin: -24px 0;
    font-family: Poppins, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #6B7280;
/*    text-align: justify;*/
}

/* Tablet */
@media (max-width: 991px) {

    .main-heading {
        font-size: 32px;
        line-height: 46px;
    }

    .feature-card {
        height: auto;
        min-height: 250px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .connectWithDataTesti .owl-dots:before{width: 100%;}
        
        .clientstestimonials.trustedclients .owl-nav {
            max-width: 80px;
            bottom: 0;
            top: inherit;
        }
    .welcome-section {
        padding: 60px 0;
    }

    .main-heading {
        font-size: 28px;
        line-height: 40px;
    }

    .feature-card {
        border-right: none;
    }
}

/*----------------Running up 3 steps----------------*/
.getting-started-section {
    width: 100%;
    padding: 60px 0;
    background: #fff;
}

    .getting-started-section .container {
        max-width: 1440px;
    }

.section-header {
    margin-bottom: 50px;
}

.section-label {
    display: block;
    margin-bottom: 12px;
    font-family: Poppins, sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    text-transform: capitalize;
    color: #F5A623;
    text-align: center;
}

.section-title-Running {
    margin: 0;
    font-family: Poppins, sans-serif;
    font-weight: 600;
    font-size: 40px;
    line-height: 58px;
    color: #0F4F93;
}

    .section-title-Running span {
        color: #FF9E2C;
    }

.step-card {
    height: auto;
    padding: 30px;
    border: 1px solid #E8ECF3;
    border-radius: 24px;
    background: #F8FAFC;
    transition: all .3s ease;
}

.step-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

    .step-icon img {
        width: 80px;
        height: 80px;
        margin: 0 auto;
    }

.step-card h3 {
    margin: 0 0 15px;
    font-family: Poppins, sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    color: #222;
}

.step-card p {
    margin: 0;
    font-family: Poppins, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #6B7280;
/*    text-align: justify;*/
}

@media (max-width: 991px) {
    .step-card {
        margin-bottom: 20px;
        height: auto;
    }

    .section-title {
        font-size: 32px;
        line-height: 44px;
    }
}

.about-customers {
    background: #06113c;
    padding: 80px 0;
    position: relative;
}

/* Main Card */
.client-card {
    background: #fff;
    border-radius: 18px;
    padding: 25px;
    position: relative;
    display: flex;
    align-items: center;
}

    .client-card:after {
        content: "";
        position: absolute;
        left: 40px;
        bottom: -18px;
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
        border-top: 18px solid #fff;
    }

.client-details {
    width: 180px;
    flex-shrink: 0;
    border-right: 1px solid #ddd;
    padding-right: 20px;
    text-align: center;
}

.client-brand {
    max-width: 120px;
    margin: auto;
}

.clientname {
    flex: 1;
    padding-left: 25px;
}

    .clientname p {
        color: #333;
        line-height: 28px;
    }
/*@media (max-width: 767px) {

    .hero-stat-item {
        position: relative;
        text-align: center;
    }

        .hero-stat-item:after {
            top: auto;
            bottom: -10px;
            left: 50%;
            right: auto;
            transform: translateX(-50%);
            width: 80%;
            height: 1px;
            background-color: rgba(255, 255, 255, 0.25);
        }

        .hero-stat-item:last-child:after {
            display: none;
        }
}*/
@media (max-width: 767px) {
    .hero-stat-item:first-child {
        padding-top: 0;
    }

    .hero-stat-item:last-child {
        padding-bottom: 0;
    }
    .our-client-section .trustedclients .client-card{padding: 15px !important;}
    .testimonial-design-wrapper .clientname p{text-align: center;}
    .about-client p::before {
        display: none;
    }
    .clientstestimonials .about-client {
        flex-direction: column !important;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    .hero-stats {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
    }

    .hero-stat-item {
        position: relative;
        text-align: center;
        width: 100%;
        padding: 20px 0;
        margin: 0;
        gap: 0;
    }

    .hero-stat-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-stat-divider {
        display: none; /* hide manual divider on mobile */
    }

    .hero-stat-item::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        height: 1px;
        background: rgba(255, 255, 255, 0.25);
        top: inherit;
    }

    .hero-stat-item:last-child::after {
/*        display: none;*/
    }
}
.about-client {
    margin-top: 15px;
}

/*    .about-client h4 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 4px;
    }

    .about-client p {
        color: #f59e0b;
    }*/
.about-client {
    display: flex;
    flex-direction: row; 
    gap: 15px; 
    align-items: center;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    color: #F59E0B;
}

/*    .about-client h4,
    .about-client p {
        margin: 0;
        font-size: 16px;
        font-weight: 500;
        color: #F59E0B;
    }
    .about-client::before{
        content: "|";
      
    }
*/
.about-client {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

    .about-client h4,
    .about-client p {
        margin: 0;
        font-size: 16px;
        font-weight: 500;
        color: #F59E0B;
        font-family: 'Poppins', sans-serif;
        line-height: 1;
    }

        .about-client p::before {
            content: "|";
            margin-right: 8px;
            color: #F59E0B;
        }

/*    .about-client::before,
    .about-client::after {
        content: "";
        width: 30px;
        height: 1px;
        background: #F59E0B;
    }

    .about-client h4::before {
        content: "—";
        margin-right: 4px;
    }

    .about-client p::after {
        content: "—";
        margin-left: 4px;
    }*/

/* Arrows */
.connectWithDataTesti .owl-prev,
.connectWithDataTesti .owl-next {
    width: 50px;
    height: 50px;
    background: #fff !important;
    border-radius: 50% !important;
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    box-shadow: 0 5px 20px rgba(0,0,0,.15);
}

.connectWithDataTesti .owl-prev {
    left: -80px;
}

.connectWithDataTesti .owl-next {
    right: -80px;
}

    .connectWithDataTesti .owl-prev i,
    .connectWithDataTesti .owl-next i {
        font-size: 24px;
        color: #06113c;
    }

/* Logo Tabs */
.connectWithDataTesti .owl-dots {
    text-align: center;
    margin-top: 40px;
}

.logo-dot {
    width: 110px;
    height: 75px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    transition: .3s;
}

    .logo-dot img {
        max-width: 90px;
        max-height: 28px;
    }

.connectWithDataTesti .owl-dot {
    display: inline-block;
    margin: 0 6px;
}

    .connectWithDataTesti .owl-dot.active .logo-dot {
        border: 2px solid #f59e0b;
        box-shadow: 0 0 15px rgba(245,158,11,.4);
    }

/* Click Text */
.connectWithDataTesti .owl-dots:before {
    content: "Click to View Client Review";
    display: block;
    color: #d8d8d8;
    margin-bottom: 18px;
    position: absolute;
    bottom: 95px;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    background: #0d1333;
    padding: 15px 20px;
    font: 500 16px 'Poppins', sans-serif;
}


.about-customers {
    background: #07113d;
    padding: 80px 0;
    position: relative;
}

.connectWithDataTesti {
    position: relative;
}

/* CARD */

.client-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    min-height: 280px;
    position: relative;
    text-align: center;
}

.client-card:after {
    content: "";
    position: absolute;
    left: 60px;
    bottom: -18px;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-top: 18px solid #fff;
}

.client-logo-box {
    margin-bottom: 15px;
}

.client-brand {
    max-width: 180px;
    max-height: 80px;
}

.company-name {
    font-size: 18px;
    font-weight: 600;
    margin: 15px 0 25px;
    color: #1d1d1d;
}

.client-review {
    font-size: 16px;
    line-height: 32px;
    color: #333;
    max-width: 900px;
    margin: auto;
}

.view-more {
    color: #0a66c2;
    margin-left: 5px;
}

.about-client {
    margin-top: 30px;
}

.about-client h4 {
    font-size: 15px;
/*    font-weight: 600;*/
/*    margin-bottom: 5px;*/
}

.about-client p {
    margin: 0;
    color: #444;
}

/* ARROWS */

.connectWithDataTesti .owl-prev,
.connectWithDataTesti .owl-next {

    position: absolute;
    top: 45%;
    transform: translateY(-50%);

    width: 50px;
    height: 50px;

    border-radius: 50% !important;
    border: 1px solid #000 !important;

    background: #fff !important;
    color: #000 !important;

    transition: .3s;
}

.connectWithDataTesti .owl-prev {
    left: -90px;
}

.connectWithDataTesti .owl-next {
    right: -90px;
}

.connectWithDataTesti .owl-prev:hover,
.connectWithDataTesti .owl-next:hover {
    background: #f59e0b !important;
    border-color: #f59e0b !important;
    color: #fff !important;
}

.connectWithDataTesti .owl-prev i,
.connectWithDataTesti .owl-next i {
    font-size: 20px;
}

/* DOTS TITLE */

.connectWithDataTesti .owl-dots {
    margin-top: 35px;
    text-align: center;
}


/* LOGO TABS */

.logo-dot {

    width: 110px;
    height: 55px;

    background: #fff;

    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 2px solid transparent;

    transition: .3s;
}

    .logo-dot img {
        max-width: 100%;
        height: 35px;
        max-height: max-content;
        display: inline-block;
    }

.connectWithDataTesti .owl-dot {
    display: inline-block;
    margin: 0 6px;
}

.connectWithDataTesti .owl-dot.active .logo-dot {

    border-color: #f59e0b;

    box-shadow: 0 0 12px rgba(245, 158, 11, .35);
}

/* MOBILE */

@media(max-width:991px) {

    .connectWithDataTesti .owl-prev {
        left: -25px;
    }

    .connectWithDataTesti .owl-next {
        right: -25px;
    }
}

@media(max-width:767px) {
    .testimonial-design-wrapper .client-card:after{
        display: none
    }
    .connectWithDataTesti .owl-dots:before {
        display: none
    }
    .client-card {
        padding: 25px;
    }

    .connectWithDataTesti .owl-prev,
    .connectWithDataTesti .owl-next {

        width: 40px;
        height: 40px;
    }

    .connectWithDataTesti .owl-prev {
        left: 0;
    }

    .connectWithDataTesti .owl-next {
        right: 0;
    }

    .logo-dot {
        width: 85px;
        display: none;
    }
}

/* Main White Card */

.testimonial-design-wrapper .client-card {
    position: relative;
    /*    width: 100%;*/
    align-items: flex-start;
    flex-direction: column;
    max-width: 1440px;
        min-height: 225px;
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 24px;
    /*    padding: 30px 40px;*/
    display: flex;
    align-items: center;
    /*    gap: 10px;*/
    flex-direction: row;

}

    /* Bottom Pointer */

    .testimonial-design-wrapper .client-card:after {
        /*  content: "";
        position: absolute;
        left: 32px;
        bottom: -16px;
        width: 0;
        height: 0;
        border-left: 16px solid transparent;
        border-right: 16px solid transparent;
        border-top: 16px solid #fff;*/

        content: "";
        position: absolute;
        left: 32px;
        bottom: -30px;
        width: 0;
        height: 0;
        border-left: 26px solid transparent;
        border-right: 26px solid transparent;
        border-top: 45px solid #fff;
    }

/* Logo Section */

.testimonial-design-wrapper .client-details {
    width: 170px;
    min-width: 170px;
    padding-right: 25px;
    border-right: 1px solid #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-design-wrapper .client-brand {
    width: 150px;
    height: 61.83px;
    max-width: none;
    object-fit: contain;
}

/* Right Content */
.testimonial-design-wrapper .about-client {
    margin-top: 15px;
}

.testimonial-design-wrapper .clientname {
    flex: 1;
    padding-left: 30px;
}


    /* Review Text */
    .testimonial-design-wrapper .clientname p {
        font-family: 'Poppins', sans-serif;
        font-weight: 500;
        font-size: 20px;
        line-height: 30px;
        letter-spacing: -0.5px;
        color: #3D3D3D;
        margin-bottom: 0;
    }
/* Company Name */

.clientname .testimonial-design-wrapper .about-client h4 {
    font-size: 16px;
    font-weight: 600;
    color: #2D2D2D;
    margin-bottom: 6px;
    text-align: left !important;
}

/* Author */
.testimonial-design-wrapper .about-client p {
    font-size: 14px;
    font-weight: 500;
    color: #F59E0B;
/*    margin: 0;*/
}

/* Read More */

.testimonial-design-wrapper .view-more {
    color: #0A66C2;
    font-weight: 500;
    text-decoration: none;
}

/* Mobile */

@media (max-width: 767px) {
    .connectWithDataTesti .owl-dots{
        margin-top: 0;
    }
    .client-review-section .connectWithDataTesti .owl-dots {
        overflow: none;
        padding-bottom: 0;
        display: none;
    }
    .our-client-section .trustedclients.clientstestimonials .client-card {
        margin: 0 auto 0px !important
    }

    .client-review-section .connectWithDataTesti .owl-dots {

        padding-bottom: none;
    }

    .testimonial-design-wrapper .client-card {
        display: block;
        padding: 25px;
    }

    .testimonial-design-wrapper .client-details {
        width: 100%;
        border-right: 0;
        border-bottom: 1px solid #E5E7EB;
        padding-right: 0;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .testimonial-design-wrapper .clientname {
        padding-left: 0;
    }

        .testimonial-design-wrapper .clientname p {
            font-size: 16px;
            line-height: 26px;
        }
}

.client-review-section .our-client-section{
    background: none;
}

.client-review-section .connectWithDataTesti .owl-dots {
    overflow: hidden;
    padding-bottom: 25px;
    display: flex;
}

.clientstestimonials .about-client {
    flex-direction: row;
    text-align: left !important;
    margin: 20px 0 0 0 !important;
}

    .clientstestimonials .about-client h4,
    .clientstestimonials .about-client span {
        text-align: left !important;
    }
.clientstestimonials .owl-nav {
    display: block;
}
/* --------------------- EnterPrise Reponsive media quary --------------*/

.manufacturing-hero {
    padding: 100px 0 60px;
}

    .manufacturing-hero h1 {
        font-size: 46px;
        line-height: 1.15;

    }

    .manufacturing-hero p {
        font-size: 18px;
        line-height: 1.8;
        max-width: 620px;
/*        text-align: justify;*/
    }

.hero-buttons .btn {
    padding: 16px 30px;
    font-size: 16px;
}

.hero-stats {
    margin-top: 60px;
}


/* =========================
   LAPTOP (992px - 1199px)
========================= */

@media (max-width: 1199px) {

    .manufacturing-hero {
        padding: 80px 0 60px;
    }

        .manufacturing-hero h1 {
            font-size: 46px;
        }

        .manufacturing-hero p {
            font-size: 16px;
        }

    .hero-buttons .btn {
        padding: 14px 24px;
        font-size: 15px;
    }
}


/* =========================
   TABLET (768px - 991px)
========================= */

@media (max-width: 991px) {

    .manufacturing-hero {
        padding: 60px 0 40px;
        text-align: center;
    }

        .manufacturing-hero h1 {
            font-size: 38px;
            line-height: 1.2;
        }

        .manufacturing-hero p {
            font-size: 15px;
            max-width: 100%;
        }

    .hero-buttons .btn {
        padding: 12px 22px;
        font-size: 14px;
    }

    .hero-stats {
        margin-top: 40px;
    }
}


/* =========================
   MOBILE (up to 767px)
========================= */

@media (max-width: 767px) {

    .client-review-section .connectWithDataTesti .owl-dots{
        display: none;
    }

    .manufacturing-hero {
        padding: 35px 0 20px;
        min-height: auto;
        height: auto;
    }

    .hero-content {
        text-align: center;
    }

    .hero-tag {
        font-size: 11px;
        margin-bottom: 10px;
    }

    /* Heading almost 2x smaller than desktop */
    .manufacturing-hero h1 {
        font-size: 28px;
        line-height: 1.25;
        margin-bottom: 12px;
    }

    .manufacturing-hero p {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 18px;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

        .hero-buttons .btn {
            width: 100%;
            padding: 10px 15px;
            font-size: 13px;
            border-radius: 8px;
        }

    .hero-stats {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin: 20px auto 0;
        width: 100%;
    }
    .hero-stat-item {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    .hero-stat-text {
        text-align: center;
        width: 100%;
    }

    .hero-stat-val,
    .hero-stat-label {
        text-align: center;
        display: block;
    }
    .hero-stat-val {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px; /* icon aur number ke beech space */
    }

    .hero-stat-label {
        font-size: 11px;
    }
    .stat-icon {
        width: 16px;
        height: 16px;
        display: inline-block;
    }
    .hero-stat-divider {
        width: 100%;
        height: 1px;
        margin: 10px 0;
    }
}


/* =========================
   SMALL MOBILE (up to 480px)
========================= */
@media (max-width: 768px) {
    .manufacturing-hero::before {
        content: "";
        position: absolute;
/*        inset: 0;*/
        background: rgba(100, 100, 100, 0.5);
        z-index: 1;
    }

    .manufacturing-hero > * {
        position: relative;
        z-index: 2;
    }

    @media (max-width: 480px) {


        .manufacturing-hero {
            padding: 43px 0 43px;
        }

            .manufacturing-hero h1 {
                font-size: 24px;
            }

            .manufacturing-hero p {
                font-size: 12px;
            }

        .hero-buttons .btn {
            font-size: 12px;
            padding: 9px 12px;
        }

        .hero-stat-val {
            font-size: 16px;
        }

        .hero-stat-label {
            font-size: 10px;
        }
    }

    /*----------------- Trusted Section responsive media quary -------------*/
    /* =========================
   TABLET
========================= */
    @media (max-width: 991px) {

        .trusted-section {
            padding: 60px 0;
        }

            .trusted-section .section-title {
                font-size: 22px !important;
            }

        .logo-box {
            padding: 15px;
        }
    }


    /* =========================
   MOBILE
========================= */
    @media (max-width: 767px) {

        .hero-tag{
margin-top: 0px !important; 
        }

        .trusted-section {
            padding: 35px 0;
        }

            .trusted-section .section-title {
                font-size: 14px !important;
                line-height: 1.4;
                margin-bottom: 20px;
            }




        .logo-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }

        .logo-box {
            padding: 10px;
            min-height: 70px;
            border-radius: 8px;
        }
    }


    /* =========================
   SMALL MOBILE
========================= */
    @media (max-width: 480px) {

        .trusted-section {
            padding: 25px 0;
        }

            .trusted-section .section-title {
                font-size: 13px !important;
                margin-bottom: 15px;
            }

        .logo-grid {
            gap: 8px;
            margin-top: 20px;
        }

        .logo-box {
            padding: 8px;
            min-height: 60px;
        }
    }

    /*------------- Manufacturing media query ------------*/
    /* =========================
   TABLET
========================= */
    @media (max-width: 991px) {

        .manufacturing-challenges {
            padding: 60px 0;
        }

        .section-title-manu {
            font-size: 36px;
            line-height: 1.2;
        }

        .challenge-card {
            padding: 24px;
        }
    }

    /* =========================
   MOBILE
========================= */
    @media (max-width: 767px) {

        .manufacturing-challenges {
            padding: 35px 0;
        }

        .section-label {
            font-size: 11px;
            letter-spacing: 1px;
            height: auto;
        }

        .section-title-manu {
            font-size: 26px !important;
            line-height: 1.3;
            margin-top: 10px;
        }

        .challenge-row {
            margin-top: 20px;
        }

            .challenge-row > div {
                margin-bottom: 15px;
            }

        .challenge-card {
            padding: 18px;
            border-radius: 12px;
            min-height: auto;
        }

            .challenge-card .card-icon {
                width: 40px;
                height: 40px;
                margin-bottom: 12px;
            }

            .challenge-card h3 {
                font-size: 18px;
                line-height: 1.4;
                margin-bottom: 10px;
            }

            .challenge-card p {
                font-size: 13px;
                line-height: 1.6;
                margin-bottom: 12px;
            }

            .challenge-card .card-link {
                font-size: 13px;
            }

            .challenge-card .arrow {
                font-size: 14px;
            }
    }

    /* =========================
   SMALL MOBILE
========================= */
    @media (max-width: 480px) {

        .manufacturing-challenges {
            padding: 25px 0;
        }

        .section-title-manu {
            font-size: 22px !important;
        }

        .challenge-card {
            padding: 15px;
        }

            .challenge-card .card-icon {
                width: 34px;
                height: 34px;
            }

            .challenge-card h3 {
                font-size: 16px;
            }

            .challenge-card p {
                font-size: 12px;
            }

            .challenge-card .card-link {
                font-size: 12px;
            }
    }

    /* =========================
   LAPTOP
========================= */
    @media (max-width: 1199px) {

        .welcome-section {
            padding: 70px 0;
        }

        .main-heading {
            font-size: 42px;
            line-height: 1.25;
        }
    }


    /* =========================
   TABLET
========================= */
    @media (max-width: 991px) {

        .welcome-section {
            padding: 55px 0;
        }

        .main-heading {
            font-size: 34px;
            line-height: 1.3;
        }

        .feature-card {
            padding: 25px 20px;
        }
    }


    /* =========================
   MOBILE
========================= */
    @media (max-width: 767px) {
        .testimonial-design-wrapper .our-client-section .client-card-row {
            margin-top: 10px;
        }

        .welcome-section {
            padding: 35px 0;
        }

        .sub-heading {
            font-size: 11px;
            letter-spacing: 1px;
        }

        .main-heading {
            font-size: 24px !important;
            line-height: 1.35;
            margin-top: 10px;
            margin-bottom: 25px;
        }

        .feature-wrapper .row {
            margin-bottom: 0;
        }

        .feature-col {
            margin-bottom: 15px;
        }

        .feature-card {
            padding: 12px !important;
            min-height: auto !important;
        }


        .feature-icon {
            width: 30px;
            height: 30px;
            margin-bottom: 8px;
        }

        .feature-card h3 {
            font-size: 15px;
            margin: 0 0 6px;
            line-height: 1.3;
        }

        .feature-card p {
            font-size: 12px;
            line-height: 1.4;
            margin-bottom: 0;
        }

        .feature-col {
            margin-bottom: 10px;
        }
    }


    /* =========================
   SMALL MOBILE
========================= */
    @media (max-width: 480px) {

        .welcome-section {
            padding: 30px 0;
        }

        .main-heading {
            font-size: 21px !important;
        }

        .feature-card {
            padding: 15px;
        }

        .feature-icon {
            width: 36px;
            height: 36px;
        }

        .feature-card h3 {
            font-size: 16px;
        }

        .feature-card p {
            font-size: 12px;
            line-height: 1.5;
        }
    }

    /*------------ Up Running Reponsive media quary ------------*/
    /* =========================
   TABLET
========================= */
    @media (max-width: 991px) {

        .getting-started-section {
            padding: 60px 0;
        }

        .section-title-Running {
            font-size: 34px;
        }
    }

    /* =========================
   MOBILE
========================= */
    @media (max-width: 767px) {

        .getting-started-section {
            padding: 35px 0;
        }

        .section-label {
            font-size: 11px;
            letter-spacing: 1px;
        }

        .section-title-Running {
            font-size: 24px !important;
            line-height: 1.3;
            margin-bottom: 25px;
        }

        .step-card {
            padding: 12px !important;
            min-height: 160px !important;
            margin-bottom: 10px;
            border-radius: 10px;
        }

        .step-icon {
            margin-bottom: 8px;
        }


            .step-icon img {
                width: 42px !important;
                max-width: 52px !important;
                height: auto;
            }


        .step-card h3 {
            font-size: 15px;
            line-height: 1.3;
            margin-bottom: 6px;
        }


        .step-card p {
            font-size: 12px;
            line-height: 1.4;
            margin-bottom: 0;
        }
    }

    /* =========================
   SMALL MOBILE
========================= */
    @media (max-width: 480px) {

        .getting-started-section {
            padding: 25px 0;
        }

        .section-title-Running {
            font-size: 21px !important;
        }

        .step-card {
            margin-bottom: 20px;
        }

        .step-icon img {
            width: 58px !important;
            max-width: 68px !important;
        }


        .step-card h3 {
            font-size: 15px;
        }


        .step-card p {
            font-size: 11px;
            line-height: 1.4;
        }
    }
    /*---------- Client review Reponsive ---------*/
    /* =========================
   MOBILE
========================= */
    @media (max-width: 767px) {
        body .section-header {
            margin-bottom: 30px;
        }

        .feature-col {
            padding: 0;
            border: none;
            margin-bottom: 15px !important;
        }

        .clientstestimonials button.owl-next {
            right: 0;
        }

        .clientstestimonials button.owl-prev {
            left: 0;
        }

        .client-review-section {
            padding: 35px 0 !important;
        }

            .client-review-section .section-header {
                margin-bottom: 20px;
            }

            .client-review-section .section-label {
                font-size: 11px;
                letter-spacing: 1px;
            }

            .client-review-section .section-title {
                font-size: 24px !important;
                line-height: 1.3;
                margin-top: 8px;
                margin-bottom: 0;
            }

                .client-review-section .section-title span {
                    display: block;
                }

        .testimonial-design-wrapper {
            margin-top: 15px;
        }

        .our-client-section {
            margin: 0;
        }

        .client-card-row {
            padding-left: 0;
            padding-right: 0;
        }

        .connectWithDataTesti {
            margin-top: 10px;
        }
    }

    /* =========================
   SMALL MOBILE
========================= */
    @media (max-width: 480px) {

        .client-review-section {
            padding: 30px 0 !important;
        }

            .client-review-section .section-title {
                font-size: 21px !important;
                line-height: 1.3;
            }

            .client-review-section .section-header {
                margin-bottom: 15px;
            }

        .testimonial-design-wrapper {
            margin-top: 10px;
        }
    }

    .manufacturing-challenges .section-header, .client-review-section .section-title {
        margin-bottom: 0 !important;
    }

    .client-review-section .section-header {
        margin-bottom: 20px !important;
    }

    .our-client-section .clientname {
        row-gap: 0;
    }

    .yellowarrow {
        margin-left: 8px;
        max-width: 10px;
    }

    @media (max-width: 767px) {
        .about-client {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }

            .about-client h4,
            .about-client p {
                margin: 0;
            }

            .about-client h4 {
                position: relative;
                padding-bottom: 12px;
            }

                .about-client h4::after {
                    content: "";
                    position: absolute;
                    left: 50%;
                    bottom: 0;
                    transform: translateX(-50%);
                    width: 80px;
                    height: 1px;
                    background: #FF9E2C;
                }
    }
}

/*----- common media quaer-----*/
@media screen and (min-width: 1460px) and (max-width: 1920px){
    .manufacturing-hero .row {
        display: flex;
        flex-direction: column;
        height: 100vh;
        justify-content: space-between;
    }
}

